diff --git a/README.ja.md b/README.ja.md index e33b312f9..e8e8a8186 100644 --- a/README.ja.md +++ b/README.ja.md @@ -177,7 +177,7 @@ picoclaw onboard "agents": { "defaults": { "workspace": "~/.picoclaw/workspace", - "model": "glm-4.7", + "model": "deepseek/deepseek-chat", "max_tokens": 8192, "temperature": 0.7, "max_tool_iterations": 20 diff --git a/README.zh.md b/README.zh.md index f94abce88..8fa7964cd 100644 --- a/README.zh.md +++ b/README.zh.md @@ -199,7 +199,7 @@ picoclaw onboard "agents": { "defaults": { "workspace": "~/.picoclaw/workspace", - "model": "glm-4.7", + "model": "deepseek/deepseek-chat", "max_tokens": 8192, "temperature": 0.7, "max_tool_iterations": 20 diff --git a/config/config.example.json b/config/config.example.json index aa75c8338..1a20c5292 100644 --- a/config/config.example.json +++ b/config/config.example.json @@ -3,7 +3,7 @@ "defaults": { "workspace": "~/.picoclaw/workspace", "restrict_to_workspace": true, - "model": "glm-4.7", + "model": "deepseek/deepseek-chat", "max_tokens": 8192, "temperature": 0.7, "max_tool_iterations": 20 diff --git a/pkg/config/config.go b/pkg/config/config.go index d76ec8095..8ad7e0337 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -221,7 +221,7 @@ func DefaultConfig() *Config { Workspace: "~/.picoclaw/workspace", RestrictToWorkspace: true, Provider: "", - Model: "glm-4.7", + Model: "deepseek/deepseek-chat", MaxTokens: 8192, Temperature: 0.7, MaxToolIterations: 20,