rag_agent / testing_main.py
kith777's picture
added base logic
30ee88a
raw
history blame
476 Bytes
from config import configs
from knowledge_base.test_retrieval import PERSIST_PATH, EMBEDDING_MODEL_NAME, COLLECTION_NAME
if __name__ == "__main__":
print("Testing configuration values...")
for key, value in configs.items():
print(f"{key}: {value}")
print("βœ… Configuration test completed successfully.")
print(f"PERSIST_PATH: {PERSIST_PATH}")
print(f"EMBEDDING_MODEL_NAME: {EMBEDDING_MODEL_NAME}")
print(f"COLLECTION_NAME: {COLLECTION_NAME}")