feat: 更新模型配置,调整温度和上下文窗口令牌数量;添加启动和停止网关的批处理脚本

This commit is contained in:
oudecheng 2026-07-01 15:11:28 +08:00
parent c70571b0d1
commit 81c88257c8
3 changed files with 15 additions and 2 deletions

View File

@ -0,0 +1,9 @@
@echo off
echo === Stop PicoBot Gateway ===
powershell -ExecutionPolicy Bypass -File "%~dp0start-gateway.ps1" -Action stop
echo.
echo === Start PicoBot Gateway ===
powershell -ExecutionPolicy Bypass -File "%~dp0start-gateway.ps1" -Action start
pause

3
package/stop-gateway.bat Normal file
View File

@ -0,0 +1,3 @@
@echo off
powershell -ExecutionPolicy Bypass -File "%~dp0start-gateway.ps1" -Action stop
pause

View File

@ -935,8 +935,9 @@ impl Config {
"models": {
"default": {
"model_id": "deepseek-v4-flash",
"temperature": 0.7,
"context_window_tokens": 128000
"temperature": 0.3,
"max_tokens": 20000,
"context_window_tokens": 1000000
}
},
"agents": {