Skip to content

Commit 5266ce0

Browse files
committed
docs
1 parent 895be05 commit 5266ce0

File tree

1 file changed

+12
-15
lines changed

1 file changed

+12
-15
lines changed

docs/models.md

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,13 @@ Create a configuration file at `.eca/config.json` in your project root or at `~/
4040

4141
#### Adding new models
4242

43-
You can add new models or override existing ones in your configuration:
43+
You can add new models or merge with existing ones in your configuration:
4444

4545
```javascript
4646
{
4747
"providers": {
48-
"openai": {"key": "your-openai-api-key-here"}
49-
},
50-
"models": {
51-
"gpt-5": {},
52-
"claude-3-5-sonnet-20241022": {}
48+
"openai": {"key": "your-openai-api-key-here",
49+
"models": {"o1": {}}}
5350
}
5451
}
5552
```
@@ -61,16 +58,16 @@ You can customize model parameters like temperature, reasoning effort, etc.:
6158
```javascript
6259
{
6360
"providers": {
64-
"openai": {"key": "your-openai-api-key-here"}
65-
},
66-
"models": {
67-
"gpt-5": {
68-
"extraPayload": {
69-
"temperature": 0.7,
70-
"reasoning_effort": "high",
71-
"max_tokens": 4000
61+
"openai": {
62+
"key": "your-openai-api-key-here",
63+
"gpt-5": {
64+
"extraPayload": {
65+
"temperature": 0.7,
66+
"reasoning_effort": "high",
67+
"max_tokens": 4000
68+
}
69+
}
7270
}
73-
}
7471
}
7572
}
7673
```

0 commit comments

Comments
 (0)