Initial commit: gmTouringMiniApp project

This commit is contained in:
周瑞哲
2026-07-30 16:04:34 +08:00
commit ebcae02d35
201 changed files with 49545 additions and 0 deletions
@@ -0,0 +1,13 @@
Metadata-Version: 2.4
Name: guangming-travel-assistant
Version: 0.1.0
Summary: Shenzhen Guangming travel planning assistant POC
Requires-Python: >=3.9
Requires-Dist: fastapi<1.0.0,>=0.115.0
Requires-Dist: openai<2.0.0,>=1.50.0
Requires-Dist: pydantic<2.13.0,>=2.8.0
Requires-Dist: python-dotenv<2.0.0,>=1.0.0
Requires-Dist: uvicorn[standard]<1.0.0,>=0.30.0
Provides-Extra: test
Requires-Dist: httpx<1.0.0,>=0.27.0; extra == "test"
Requires-Dist: pytest<9.0.0,>=8.0.0; extra == "test"
@@ -0,0 +1,15 @@
pyproject.toml
app/__init__.py
app/knowledge.py
app/llm.py
app/main.py
app/planner.py
app/prompts.py
app/schemas.py
guangming_travel_assistant.egg-info/PKG-INFO
guangming_travel_assistant.egg-info/SOURCES.txt
guangming_travel_assistant.egg-info/dependency_links.txt
guangming_travel_assistant.egg-info/requires.txt
guangming_travel_assistant.egg-info/top_level.txt
tests/test_api.py
tests/test_knowledge.py
@@ -0,0 +1,9 @@
fastapi<1.0.0,>=0.115.0
openai<2.0.0,>=1.50.0
pydantic<2.13.0,>=2.8.0
python-dotenv<2.0.0,>=1.0.0
uvicorn[standard]<1.0.0,>=0.30.0
[test]
httpx<1.0.0,>=0.27.0
pytest<9.0.0,>=8.0.0