From 5a15f1bd161080d74866f63bbeccc114d76883c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nielson=20Jann=C3=A9?= Date: Fri, 11 Apr 2025 17:14:16 +0200 Subject: [PATCH] define param explicit --- 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 aabbee1..999b910 100644 --- a/generic_rag/app.py +++ b/generic_rag/app.py @@ -91,14 +91,14 @@ vector_store = Chroma( if args.use_conditional_graph: graph = CondRetGenLangGraph( - vector_store, + vector_store=vector_store, chat_model=get_chat_model(args.chat_backend), embedding_model=get_embedding_model(args.emb_backend), system_prompt=system_prompt, ) else: graph = RetGenLangGraph( - vector_store, + vector_store=vector_store, chat_model=get_chat_model(args.chat_backend), embedding_model=get_embedding_model(args.emb_backend), system_prompt=system_prompt,