Skip to content

Commit 752ab95

Browse files
committed
fix: bugname with suffixes
1 parent 1b46a3b commit 752ab95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

agentic_rag/local_rag_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ def main():
481481
parser = argparse.ArgumentParser(description="Query documents using local LLM")
482482
parser.add_argument("--query", required=True, help="Query to search for")
483483
parser.add_argument("--embeddings", default="oracle", choices=["oracle", "chromadb"], help="Embeddings backend to use")
484-
parser.add_argument("--model", default="ollama:qwen2", help="Model to use (default: ollama:qwen2)")
484+
parser.add_argument("--model", default="qwen2", help="Model to use (default: qwen2)")
485485
parser.add_argument("--collection", help="Collection to search (PDF, Repository, General Knowledge)")
486486
parser.add_argument("--use-cot", action="store_true", help="Use Chain of Thought reasoning")
487487
parser.add_argument("--store-path", default="embeddings", help="Path to ChromaDB store")

0 commit comments

Comments
 (0)