- 添加 Codex OAuth 提供商支持,包括核心服务、适配器和策略实现 - 在用量管理页面新增支持用量查询的提供商列表显示 - 为 Codex 添加专用的用量查询接口和格式化显示 - 更新 Docker 配置以暴露 Codex OAuth 回调端口 1455 - 完善多语言文档,记录 Codex 配置和使用方法 - 修复流式响应中工具调用的 finish_reason 处理逻辑 - 增强 AI 监控插件对数组类型 chunk 的处理能力
24 lines
No EOL
599 B
YAML
24 lines
No EOL
599 B
YAML
services:
|
|
aiclient-api:
|
|
# 方式二:从 Dockerfile 本地构建
|
|
# 使用方法: docker compose -f docker-compose.build.yml up -d --build
|
|
build:
|
|
context: ..
|
|
dockerfile: Dockerfile
|
|
container_name: aiclient2api
|
|
restart: unless-stopped
|
|
ports:
|
|
- "3000:3000"
|
|
- "8085-8087:8085-8087"
|
|
- "1455:1455"
|
|
- "19876-19880:19876-19880"
|
|
volumes:
|
|
- ./configs:/app/configs
|
|
environment:
|
|
- ARGS=
|
|
healthcheck:
|
|
test: ["CMD", "node", "healthcheck.js"]
|
|
interval: 30s
|
|
timeout: 3s
|
|
start_period: 5s
|
|
retries: 3 |