repair-quote-agent / setup_knowledge.py
jsree667's picture
Add repair quote agent: Agno RAG pipeline, FastAPI backend, Docker setup
b14b9c1
Raw
History Blame Contribute Delete
176 Bytes
from agent import load_pricing_knowledge
if __name__ == "__main__":
print("Loading pricing manual into vector database...")
load_pricing_knowledge()
print("Done.")