patchrelay 0.53.2 → 0.54.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/config/patchrelay.example.json +1 -1
- package/dist/build-info.json +3 -3
- package/dist/config.js +1 -1
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"runner": {
|
|
6
6
|
"git_bin": "git",
|
|
7
7
|
"codex": {
|
|
8
|
-
"model": "gpt-5.
|
|
8
|
+
"model": "gpt-5.5",
|
|
9
9
|
"reasoning_effort": "high",
|
|
10
10
|
"developer_instructions": "Keep the public API stable for this installation unless the task explicitly requires a breaking change."
|
|
11
11
|
}
|
package/dist/build-info.json
CHANGED
package/dist/config.js
CHANGED
|
@@ -158,7 +158,7 @@ const configSchema = z.object({
|
|
|
158
158
|
shell_bin: z.string().optional(),
|
|
159
159
|
source_bashrc: z.boolean().default(true),
|
|
160
160
|
request_timeout_ms: z.number().int().positive().default(30000),
|
|
161
|
-
model: z.string().
|
|
161
|
+
model: z.string().default("gpt-5.5"),
|
|
162
162
|
model_provider: z.string().optional(),
|
|
163
163
|
reasoning_effort: z.enum(["low", "medium", "high"]).optional(),
|
|
164
164
|
service_name: z.string().default("patchrelay"),
|