switch gpt-5 to codex prompt

This commit is contained in:
Dax Raad
2025-08-10 20:47:11 -04:00
parent 652bed02bb
commit 828bc3b72f
4 changed files with 15 additions and 12 deletions
+5 -7
View File
@@ -121,13 +121,11 @@ export namespace MessageV2 {
export const ReasoningPart = PartBase.extend({
type: z.literal("reasoning"),
text: z.string(),
providerMetadata: z.record(z.any()).optional(),
time: z
.object({
start: z.number(),
end: z.number().optional(),
})
.optional(),
metadata: z.record(z.any()).optional(),
time: z.object({
start: z.number(),
end: z.number().optional(),
}),
}).openapi({
ref: "ReasoningPart",
})