Swipe project 0987654321
01:49 10 May 2026

AI_CLINIC_BOOKING_SYSTEM/

├── _pycache_/

├── .pytest_cache/

├── agents/

│ ├── _pycache_/

│ ├── _init_.py

│ ├── booking_agent.py

│ └── intake_agent.py

├── config/

│ ├── _init_.py

│ └── settings.py

├── data/

│ └── clinic_booking.db

├── database/

│ ├── _pycache_/

│ ├── _init_.py

│ └── connection.py

├── demos/

│ ├── _pycache_/

│ ├── _init_.py

│ ├── .env

│ ├── milestone_1_state_persistence.py

│ ├── milestone_2_tools_and_routing.py

│ ├── milestone_3_agent_integration.py

│ ├── milestone_4_human_in_the_loop.py

│ └── milestone_5_demo_observability.py

├── graph/

│ ├── _pycache_/

│ ├── graph_builder.py

│ └── state.py

├── middleware/

│ ├── _pycache_/

│ └── decorators.py

├── nodes/

│ ├── _pycache_/

│ ├── _init_.py

│ ├── booking_handler.py

│ ├── cancel_handler.py

│ ├── finalize_booking.py

│ ├── patient_confirmation.py

│ ├── reschedule_handler.py

│ ├── router.py

│ ├── smalltalk_handler.py

│ ├── staff_approval.py

│ ├── status_handler.py

│ └── supervisor.py

├── tests/

├── tools/

│ ├── _pycache_/

│ ├── _init_.py

│ ├── availability.py

│ ├── booking.py

│ ├── cancellation.py

│ ├── confirmation.py

│ └── mock_data.py

├── venv/

├── _init_.py

├── .env

├── README.md

└── requirements.txt

python django artificial-intelligence