We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d3f831 commit 0446650Copy full SHA for 0446650
packages/agents-core/src/runState.ts
@@ -165,7 +165,8 @@ const serializedProcessedResponseSchema = z.object({
165
arguments: z.string().optional(),
166
status: z.string().optional(),
167
output: z.string().optional(),
168
- providerData: z.record(z.string(), z.any()),
+ // this always exists but marked as optional for early version compatibility; when releasing 1.0, we can remove the nullable and optional
169
+ providerData: z.record(z.string(), z.any()).nullable().optional(),
170
}),
171
172
// HostedMCPTool
0 commit comments