init(all):一个让codex调用deepseek模型的项目

This commit is contained in:
Pine
2026-05-25 16:37:47 +08:00
commit e6ab2d4534
23 changed files with 2028 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
"""
应用生命周期管理
通过 FastAPI lifespan 机制处理启动和关闭事件。
"""
from contextlib import asynccontextmanager
@asynccontextmanager
async def create_lifespan(app):
"""应用生命周期上下文管理器"""
# ==================== 启动事件 ====================
print("codex_deepseek_proxy starting ...")
yield
# ==================== 关闭事件 ====================
print("codex_deepseek_proxy shutting down ...")