summaryrefslogtreecommitdiffhomepage
path: root/packages
diff options
context:
space:
mode:
authorja <[email protected]>2025-12-20 12:54:49 -0500
committerGitHub <[email protected]>2025-12-20 11:54:49 -0600
commit3b261e012547bbe33cfda83460e14ec83cf2f0d3 (patch)
treef5a2aa5c561fab50ec5a84b4dfc5158fd4c4c4a2 /packages
parent426791f68a3a6a5212af5e88c932c2b41f17c294 (diff)
downloadopencode-3b261e012547bbe33cfda83460e14ec83cf2f0d3.tar.gz
opencode-3b261e012547bbe33cfda83460e14ec83cf2f0d3.zip
docs: add name property to model configuration example (#5853)
Diffstat (limited to 'packages')
-rw-r--r--packages/web/src/content/docs/models.mdx2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/web/src/content/docs/models.mdx b/packages/web/src/content/docs/models.mdx
index 0402d4973..002f3f558 100644
--- a/packages/web/src/content/docs/models.mdx
+++ b/packages/web/src/content/docs/models.mdx
@@ -117,6 +117,7 @@ You can also define custom models that extend built-in ones and can optionally u
"models": {
"gpt-5-high": {
"id": "gpt-5",
+ "name": "MyGPT5 (High Reasoning)",
"options": {
"reasoningEffort": "high",
"textVerbosity": "low",
@@ -125,6 +126,7 @@ You can also define custom models that extend built-in ones and can optionally u
},
"gpt-5-low": {
"id": "gpt-5",
+ "name": "MyGPT5 (Low Reasoning)",
"options": {
"reasoningEffort": "low",
"textVerbosity": "low",