diff options
| author | Frank <[email protected]> | 2026-02-14 00:47:24 -0500 |
|---|---|---|
| committer | Frank <[email protected]> | 2026-02-14 00:47:26 -0500 |
| commit | 1e25df21a2db1efb60b51fa4e13ae79b6606d5af (patch) | |
| tree | cdcd547c72e435be39f9e28b580876f7e674fc31 /packages/console/core | |
| parent | ffc000de8e446c63d41a2e352d119d9ff43530d0 (diff) | |
| download | opencode-1e25df21a2db1efb60b51fa4e13ae79b6606d5af.tar.gz opencode-1e25df21a2db1efb60b51fa4e13ae79b6606d5af.zip | |
zen: minimax m2.5 & glm5
Diffstat (limited to 'packages/console/core')
| -rw-r--r-- | packages/console/core/src/model.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/console/core/src/model.ts b/packages/console/core/src/model.ts index 9a2908e32..da2677844 100644 --- a/packages/console/core/src/model.ts +++ b/packages/console/core/src/model.ts @@ -62,12 +62,13 @@ export namespace ZenData { apiKey: z.string(), format: FormatSchema.optional(), headerMappings: z.record(z.string(), z.string()).optional(), + payloadModifier: z.record(z.string(), z.any()).optional(), family: z.string().optional(), }) const ProviderFamilySchema = z.object({ headers: z.record(z.string(), z.string()).optional(), - bodyModifier: z.record(z.string(), z.string()).optional(), + responseModifier: z.record(z.string(), z.string()).optional(), }) const ModelsSchema = z.object({ |
