zen-code 1.8.0 → 1.9.0

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 CHANGED
@@ -3,17 +3,22 @@
3
3
  A Cli Coder like Claude Code
4
4
 
5
5
  ```sh
6
- SQLITE_DATABASE_URI=./.langgraph_api/langgraph.db
7
- OPENAI_API_KEY=sk-
8
- OPENAI_BASE_URL=https://api.xiaomimimo.com/v1 # or any other openai endpoint
6
+ bunx --bun zen-code
9
7
  ```
10
8
 
11
9
  ```sh
12
- bunx zen-code
13
- ```
10
+ # change openai config
11
+ /config openai_api_key sk-***
12
+ /config openai_base_url https://....
14
13
 
15
- Chang Model in Zen Code
14
+ # change anthropic config
15
+ /config anthropic_api_key sk-***
16
+ /config anthropic_base_url https://....
17
+ /config model_provider anthropic
18
+ ```
16
19
 
17
20
  ```sh
18
- /m mimo-v2-flash
21
+ /m # list all models
22
+ /m 2 # set no.2 model in model list
23
+ /m gpt-5.2 # set specific model name
19
24
  ```
package/cli.js CHANGED
File without changes