Fix --backend flag and description

This commit is contained in:
Nielson Janné 2025-03-17 12:47:09 +01:00
parent b9d2f348a2
commit 67d681fcc4

View File

@ -21,11 +21,11 @@ logger = logging.getLogger(__name__)
parser = argparse.ArgumentParser(description="A Sogeti Nederland Generic RAG demo.")
parser.add_argument(
"-b",
"--back-end",
"--backend",
type=BackendType,
choices=list(BackendType),
default=BackendType.azure,
help="(Cloud) back-end to use. In the case of local, a locally installed ollama will be used.",
help="Cloud provider to use as backend. In the case of local, Ollama needs to be installed..",
)
parser.add_argument(
"-p",