From 67d681fcc45f9204512949e9d4b1a36ad8fa429f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nielson=20Jann=C3=A9?= Date: Mon, 17 Mar 2025 12:47:09 +0100 Subject: [PATCH] Fix --backend flag and description --- generic_rag/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generic_rag/app.py b/generic_rag/app.py index e0d8abd..8f0849b 100644 --- a/generic_rag/app.py +++ b/generic_rag/app.py @@ -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",