You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -168,14 +168,14 @@ Bot profiles are json files (such as `andy.json`) that define:
168
168
169
169
## Model Specifications
170
170
171
-
LLM models can be specified simply as `"model": "gpt-4o"`, or more specifically with `"{api}/{model}"`, like `"openrouter/google/gemini-2.5-pro"`. See all supported APIs [here](#model-customization).
171
+
LLM models can be specified simply as `"model": "gpt-5.4"`, or more specifically with `"{api}/{model}"`, like `"openrouter/google/gemini-2.5-pro"`. See all supported APIs [here](#model-customization).
172
172
173
173
The `model` field can be a string or an object. A model object must specify an `api`, and optionally a `model`, `url`, and additional `params`. You can also use different models/providers for chatting, coding, vision, embedding, and voice synthesis. See the example below.
174
174
175
175
```json
176
176
"model": {
177
177
"api": "openai",
178
-
"model": "gpt-4o",
178
+
"model": "gpt-5.4",
179
179
"url": "https://api.openai.com/v1/",
180
180
"params": {
181
181
"max_tokens": 1000,
@@ -184,18 +184,18 @@ The `model` field can be a string or an object. A model object must specify an `
0 commit comments