Bilingual Tour Operations Agent
Structured data extraction from unstructured travel enquiries
An AI agent that reads travel enquiries in Chinese or English, extracts structured details (dates, budget, group size) via prompt engineering, and flags incomplete enquiries for human review.
- Bilingual intake (ZH / EN) with structured output schema
- Human-in-the-loop flagging for incomplete enquiries
- Roadmap: Qdrant · RAG · LangGraph · JWT · Admin Dashboard
bilingual-tour-ops-agent/ ├── app/ │ ├── main.py # FastAPI entrypoint │ ├── agent/ │ │ ├── prompts.py # bilingual system prompts │ │ └── extractor.py # structured extraction │ ├── schemas/ # Pydantic models │ └── db/ # PostgreSQL layer ├── Dockerfile └── tests/