├── .env.example ├── .gitignore ├── Hello.py ├── README.MD ├── all_urls.json ├── embedding_model ├── __init__.py └── core.py ├── load_document.py ├── openai_client.py ├── output.json ├── pages └── Chat Bot.py ├── rag ├── __init__.py ├── core.py └── mongo_client.py ├── reflection ├── __init__.py └── core.py ├── requirements.txt ├── semantic_cache ├── __init__.py └── core.py ├── semantic_router ├── __init__.py ├── route.py ├── router.py ├── samples.py └── test_router.py ├── serve.py └── web_scraper.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | venv/ 3 | .env 4 | -------------------------------------------------------------------------------- /Hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/Hello.py -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/README.MD -------------------------------------------------------------------------------- /all_urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/all_urls.json -------------------------------------------------------------------------------- /embedding_model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/embedding_model/__init__.py -------------------------------------------------------------------------------- /embedding_model/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/embedding_model/core.py -------------------------------------------------------------------------------- /load_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/load_document.py -------------------------------------------------------------------------------- /openai_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/openai_client.py -------------------------------------------------------------------------------- /output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/output.json -------------------------------------------------------------------------------- /pages/Chat Bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/pages/Chat Bot.py -------------------------------------------------------------------------------- /rag/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/rag/__init__.py -------------------------------------------------------------------------------- /rag/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/rag/core.py -------------------------------------------------------------------------------- /rag/mongo_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/rag/mongo_client.py -------------------------------------------------------------------------------- /reflection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/reflection/__init__.py -------------------------------------------------------------------------------- /reflection/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/reflection/core.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/requirements.txt -------------------------------------------------------------------------------- /semantic_cache/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/semantic_cache/__init__.py -------------------------------------------------------------------------------- /semantic_cache/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/semantic_cache/core.py -------------------------------------------------------------------------------- /semantic_router/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/semantic_router/__init__.py -------------------------------------------------------------------------------- /semantic_router/route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/semantic_router/route.py -------------------------------------------------------------------------------- /semantic_router/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/semantic_router/router.py -------------------------------------------------------------------------------- /semantic_router/samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/semantic_router/samples.py -------------------------------------------------------------------------------- /semantic_router/test_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/semantic_router/test_router.py -------------------------------------------------------------------------------- /serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/serve.py -------------------------------------------------------------------------------- /web_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtonX-AI-for-Devs-01/quang-le-vietnamese-rag/HEAD/web_scraper.py --------------------------------------------------------------------------------