├── .env.example ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── app ├── __init__.py └── ai_agent │ ├── __init__.py │ ├── agent.py │ ├── context.py │ ├── graphs │ ├── agent_graph.py │ └── state.py │ ├── prompts.py │ ├── qdrant.py │ └── tools.py ├── main.py ├── requirements.txt └── static └── chat.html /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omariut/doctor-appointment-bot/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omariut/doctor-appointment-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | "editor.formatOnSave": true 4 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omariut/doctor-appointment-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omariut/doctor-appointment-bot/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omariut/doctor-appointment-bot/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/ai_agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omariut/doctor-appointment-bot/HEAD/app/ai_agent/__init__.py -------------------------------------------------------------------------------- /app/ai_agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omariut/doctor-appointment-bot/HEAD/app/ai_agent/agent.py -------------------------------------------------------------------------------- /app/ai_agent/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omariut/doctor-appointment-bot/HEAD/app/ai_agent/context.py -------------------------------------------------------------------------------- /app/ai_agent/graphs/agent_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omariut/doctor-appointment-bot/HEAD/app/ai_agent/graphs/agent_graph.py -------------------------------------------------------------------------------- /app/ai_agent/graphs/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omariut/doctor-appointment-bot/HEAD/app/ai_agent/graphs/state.py -------------------------------------------------------------------------------- /app/ai_agent/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omariut/doctor-appointment-bot/HEAD/app/ai_agent/prompts.py -------------------------------------------------------------------------------- /app/ai_agent/qdrant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omariut/doctor-appointment-bot/HEAD/app/ai_agent/qdrant.py -------------------------------------------------------------------------------- /app/ai_agent/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omariut/doctor-appointment-bot/HEAD/app/ai_agent/tools.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omariut/doctor-appointment-bot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omariut/doctor-appointment-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/chat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omariut/doctor-appointment-bot/HEAD/static/chat.html --------------------------------------------------------------------------------