c36a5170f8
Project CI / AI game creator shell Rust shard 1/4 (push) Successful in 5m28s
Project CI / AI game creator shell Rust shard 3/4 (push) Successful in 5m29s
Project CI / AI game creator shell Rust shard 4/4 (push) Successful in 6m6s
Project CI / AI game creator shell Rust shard 2/4 (push) Successful in 6m6s
Project CI / AI game creator shell Rust smoke (push) Successful in 1m46s
Project CI / AI game creator shell Rust crates (push) Successful in 2m51s
Project CI / Frontend tests (push) Successful in 4m44s
Project CI / Native shell tests (push) Successful in 6m31s
Project CI / Repository checks (push) Successful in 4m17s
Project CI / Backend tests (push) Successful in 7m48s
Project CI / AI game creator shell web tests (push) Successful in 3m43s
- 本地配置新增 llm.customEnabled 与 llm.visibleModels,显式开启后保留自定义连接和勾选列表,官方路由下仍清空凭据 - 配置迁移始终写出 customEnabled、visibleModels、apiKey、baseUrl、model、apiKind、reasoningEffort,便于手写自定义连接 - 新增 discover_game_creator_llm_models 命令,直连自定义端点 GET /models,限制超时与响应大小并脱敏错误 - codex_app_server 自定义模式改用配置里的地址与 Key 走本地凭据代理,不再经过平台 /api/llm,也不回退官方路由 - 模型目录按官方与自定义来源隔离缓存,自定义模式只展示勾选模型,选项失效时回退第一项 - 设置页在自定义模式展示 API 地址、API Key、协议与推理档,并提供模型读取、搜索、勾选与已勾选预览 - 补齐固定项排版与读取按钮样式,同步 AGC 模型选择规范、实施计划与共享概览
23 lines
571 B
JSON
23 lines
571 B
JSON
{
|
|
"schemaVersion": "game-creator-config.v2",
|
|
"agentMode": "codex_app_server",
|
|
"llm": {
|
|
"customEnabled": false,
|
|
"visibleModels": [],
|
|
"apiKey": "",
|
|
"baseUrl": "https://dev.genarrative.world/gpt/v1",
|
|
"model": "gpt-6-astra",
|
|
"apiKind": "openai_responses",
|
|
"reasoningEffort": "max",
|
|
"stream": true,
|
|
"webSearchEnabled": true,
|
|
"contextWindowTokens": 128000,
|
|
"autoCompactTokenLimit": 64000,
|
|
"toolOutputTokenLimit": 12000,
|
|
"requestTimeoutMs": 180000,
|
|
"maxRetries": 2,
|
|
"retryBackoffMs": 500
|
|
},
|
|
"agentLlm": {}
|
|
}
|