Spaces:
Runtime error
Runtime error
| """ | |
| RAG (Retrieval-Augmented Generation) Module | |
| Provides ChromaDB integration for health knowledge retrieval | |
| """ | |
| from rag.rag_integration import ( | |
| RAGIntegration, | |
| get_rag_integration, | |
| query_nutrition, | |
| query_exercise, | |
| query_health, | |
| query_generic | |
| ) | |
| __all__ = [ | |
| 'RAGIntegration', | |
| 'get_rag_integration', | |
| 'query_nutrition', | |
| 'query_exercise', | |
| 'query_health', | |
| 'query_generic' | |
| ] | |