Skip to content

Commit 5705a7f

Browse files
author
Numman Ali
committed
feat: Update configuration files to include 'store' field for AI SDK 2.0.50 compatibility
1 parent 92452fe commit 5705a7f

File tree

7 files changed

+265
-48
lines changed

7 files changed

+265
-48
lines changed

README.md

Lines changed: 47 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -69,79 +69,116 @@ For the complete experience with all reasoning variants matching the official Co
6969
"textVerbosity": "medium",
7070
"include": [
7171
"reasoning.encrypted_content"
72-
]
72+
],
73+
"store": false
7374
},
7475
"models": {
7576
"gpt-5-codex-low": {
7677
"name": "GPT 5 Codex Low (OAuth)",
7778
"options": {
7879
"reasoningEffort": "low",
7980
"reasoningSummary": "auto",
80-
"textVerbosity": "medium"
81+
"textVerbosity": "medium",
82+
"include": [
83+
"reasoning.encrypted_content"
84+
],
85+
"store": false
8186
}
8287
},
8388
"gpt-5-codex-medium": {
8489
"name": "GPT 5 Codex Medium (OAuth)",
8590
"options": {
8691
"reasoningEffort": "medium",
8792
"reasoningSummary": "auto",
88-
"textVerbosity": "medium"
93+
"textVerbosity": "medium",
94+
"include": [
95+
"reasoning.encrypted_content"
96+
],
97+
"store": false
8998
}
9099
},
91100
"gpt-5-codex-high": {
92101
"name": "GPT 5 Codex High (OAuth)",
93102
"options": {
94103
"reasoningEffort": "high",
95104
"reasoningSummary": "detailed",
96-
"textVerbosity": "medium"
105+
"textVerbosity": "medium",
106+
"include": [
107+
"reasoning.encrypted_content"
108+
],
109+
"store": false
97110
}
98111
},
99112
"gpt-5-minimal": {
100113
"name": "GPT 5 Minimal (OAuth)",
101114
"options": {
102115
"reasoningEffort": "minimal",
103116
"reasoningSummary": "auto",
104-
"textVerbosity": "low"
117+
"textVerbosity": "low",
118+
"include": [
119+
"reasoning.encrypted_content"
120+
],
121+
"store": false
105122
}
106123
},
107124
"gpt-5-low": {
108125
"name": "GPT 5 Low (OAuth)",
109126
"options": {
110127
"reasoningEffort": "low",
111128
"reasoningSummary": "auto",
112-
"textVerbosity": "low"
129+
"textVerbosity": "low",
130+
"include": [
131+
"reasoning.encrypted_content"
132+
],
133+
"store": false
113134
}
114135
},
115136
"gpt-5-medium": {
116137
"name": "GPT 5 Medium (OAuth)",
117138
"options": {
118139
"reasoningEffort": "medium",
119140
"reasoningSummary": "auto",
120-
"textVerbosity": "medium"
141+
"textVerbosity": "medium",
142+
"include": [
143+
"reasoning.encrypted_content"
144+
],
145+
"store": false
121146
}
122147
},
123148
"gpt-5-high": {
124149
"name": "GPT 5 High (OAuth)",
125150
"options": {
126151
"reasoningEffort": "high",
127152
"reasoningSummary": "detailed",
128-
"textVerbosity": "high"
153+
"textVerbosity": "high",
154+
"include": [
155+
"reasoning.encrypted_content"
156+
],
157+
"store": false
129158
}
130159
},
131160
"gpt-5-mini": {
132161
"name": "GPT 5 Mini (OAuth)",
133162
"options": {
134163
"reasoningEffort": "low",
135164
"reasoningSummary": "auto",
136-
"textVerbosity": "low"
165+
"textVerbosity": "low",
166+
"include": [
167+
"reasoning.encrypted_content"
168+
],
169+
"store": false
137170
}
138171
},
139172
"gpt-5-nano": {
140173
"name": "GPT 5 Nano (OAuth)",
141174
"options": {
142175
"reasoningEffort": "minimal",
143176
"reasoningSummary": "auto",
144-
"textVerbosity": "low"
177+
"textVerbosity": "low",
178+
"include": [
179+
"reasoning.encrypted_content"
180+
],
181+
"store": false
145182
}
146183
}
147184
}

config/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ This uses default settings:
1616
- `reasoningSummary`: "auto"
1717
- `textVerbosity`: "medium"
1818
- `include`: ["reasoning.encrypted_content"]
19+
- `store`: false (required for AI SDK 2.0.50+ compatibility)
1920

2021
### full-opencode.json
2122
Complete configuration example showing all model variants with custom settings.

config/full-opencode.json

Lines changed: 48 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,82 +11,119 @@
1111
"textVerbosity": "medium",
1212
"include": [
1313
"reasoning.encrypted_content"
14-
]
14+
],
15+
"store": false
1516
},
1617
"models": {
1718
"gpt-5-codex-low": {
1819
"name": "GPT 5 Codex Low (OAuth)",
1920
"options": {
2021
"reasoningEffort": "low",
2122
"reasoningSummary": "auto",
22-
"textVerbosity": "medium"
23+
"textVerbosity": "medium",
24+
"include": [
25+
"reasoning.encrypted_content"
26+
],
27+
"store": false
2328
}
2429
},
2530
"gpt-5-codex-medium": {
2631
"name": "GPT 5 Codex Medium (OAuth)",
2732
"options": {
2833
"reasoningEffort": "medium",
2934
"reasoningSummary": "auto",
30-
"textVerbosity": "medium"
35+
"textVerbosity": "medium",
36+
"include": [
37+
"reasoning.encrypted_content"
38+
],
39+
"store": false
3140
}
3241
},
3342
"gpt-5-codex-high": {
3443
"name": "GPT 5 Codex High (OAuth)",
3544
"options": {
3645
"reasoningEffort": "high",
3746
"reasoningSummary": "detailed",
38-
"textVerbosity": "medium"
47+
"textVerbosity": "medium",
48+
"include": [
49+
"reasoning.encrypted_content"
50+
],
51+
"store": false
3952
}
4053
},
4154
"gpt-5-minimal": {
4255
"name": "GPT 5 Minimal (OAuth)",
4356
"options": {
4457
"reasoningEffort": "minimal",
4558
"reasoningSummary": "auto",
46-
"textVerbosity": "low"
59+
"textVerbosity": "low",
60+
"include": [
61+
"reasoning.encrypted_content"
62+
],
63+
"store": false
4764
}
4865
},
4966
"gpt-5-low": {
5067
"name": "GPT 5 Low (OAuth)",
5168
"options": {
5269
"reasoningEffort": "low",
5370
"reasoningSummary": "auto",
54-
"textVerbosity": "low"
71+
"textVerbosity": "low",
72+
"include": [
73+
"reasoning.encrypted_content"
74+
],
75+
"store": false
5576
}
5677
},
5778
"gpt-5-medium": {
5879
"name": "GPT 5 Medium (OAuth)",
5980
"options": {
6081
"reasoningEffort": "medium",
6182
"reasoningSummary": "auto",
62-
"textVerbosity": "medium"
83+
"textVerbosity": "medium",
84+
"include": [
85+
"reasoning.encrypted_content"
86+
],
87+
"store": false
6388
}
6489
},
6590
"gpt-5-high": {
6691
"name": "GPT 5 High (OAuth)",
6792
"options": {
6893
"reasoningEffort": "high",
6994
"reasoningSummary": "detailed",
70-
"textVerbosity": "high"
95+
"textVerbosity": "high",
96+
"include": [
97+
"reasoning.encrypted_content"
98+
],
99+
"store": false
71100
}
72101
},
73102
"gpt-5-mini": {
74103
"name": "GPT 5 Mini (OAuth)",
75104
"options": {
76105
"reasoningEffort": "low",
77106
"reasoningSummary": "auto",
78-
"textVerbosity": "low"
107+
"textVerbosity": "low",
108+
"include": [
109+
"reasoning.encrypted_content"
110+
],
111+
"store": false
79112
}
80113
},
81114
"gpt-5-nano": {
82115
"name": "GPT 5 Nano (OAuth)",
83116
"options": {
84117
"reasoningEffort": "minimal",
85118
"reasoningSummary": "auto",
86-
"textVerbosity": "low"
119+
"textVerbosity": "low",
120+
"include": [
121+
"reasoning.encrypted_content"
122+
],
123+
"store": false
87124
}
88125
}
89126
}
90127
}
91128
}
92-
}
129+
}

config/minimal-opencode.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
{
22
"$schema": "https://opencode.ai/config.json",
33
"plugin": ["opencode-openai-codex-auth"],
4+
"provider": {
5+
"openai": {
6+
"options": {
7+
"store": false
8+
}
9+
}
10+
},
411
"model": "openai/gpt-5-codex"
512
}

0 commit comments

Comments
 (0)