demian-cli 1.0.7 → 1.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/docs/ko/README.md CHANGED
@@ -52,14 +52,18 @@ Demian은 다음 순서로 설정을 읽습니다.
52
52
  "openai": {
53
53
  "type": "openai-compatible",
54
54
  "baseURL": "https://api.openai.com/v1",
55
+ "apiKey": "",
55
56
  "apiKeyEnv": "OPENAI_API_KEY",
56
- "model": "gpt-5.5"
57
+ "modelProfiles": [
58
+ { "name": "main", "displayName": "GPT 5.5", "model": "gpt-5.5" }
59
+ ]
57
60
  }
58
61
  }
59
62
  }
60
63
  ```
61
64
 
62
- API key는 공유 설정 파일에 직접 쓰기보다 `apiKeyEnv`를 권장합니다.
65
+ 공유 설정에서는 `apiKey`를 비워 두고 `apiKeyEnv`를 권장합니다. 개인 로컬 설정에 직접 붙여넣을 때만 `apiKey`를 채우세요.
66
+ `lmstudio`, `ollama-local`, `ollama-cloud`, `llamacpp`, `vllm`처럼 여러 로컬/자체 호스팅 모델을 노출할 수 있는 provider는 `modelProfiles` 배열에 모델별 항목을 추가하세요.
63
67
 
64
68
  ## Claude 관련 provider
65
69
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "demian-cli",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "description": "Local terminal coding agent with TUI, goals, cowork agents, permissions, and provider switching.",
5
5
  "type": "module",
6
6
  "icon": "media/demian.svg",