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/README.md +13 -2
- package/dist/cli.mjs +1838 -359
- package/dist/index.mjs +1022 -260
- package/dist/tui.mjs +27004 -25460
- package/dist/vscode-worker.mjs +1607 -295
- package/docs/ko/README.md +6 -2
- package/package.json +1 -1
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
|
-
"
|
|
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
|
-
|
|
65
|
+
공유 설정에서는 `apiKey`를 비워 두고 `apiKeyEnv`를 권장합니다. 개인 로컬 설정에 직접 붙여넣을 때만 `apiKey`를 채우세요.
|
|
66
|
+
`lmstudio`, `ollama-local`, `ollama-cloud`, `llamacpp`, `vllm`처럼 여러 로컬/자체 호스팅 모델을 노출할 수 있는 provider는 `modelProfiles` 배열에 모델별 항목을 추가하세요.
|
|
63
67
|
|
|
64
68
|
## Claude 관련 provider
|
|
65
69
|
|