chore: improve comments

This commit is contained in:
suyao 2025-12-18 15:50:23 +08:00
parent e89af9042c
commit 5304b585b9
No known key found for this signature in database

View File

@ -145,13 +145,13 @@ function convertAnthropicToolResultToAiSdk(
/** /**
* JSON Schema type for tool input schemas * JSON Schema type for tool input schemas
* Uses the standard JSONSchema7 type from the json-schema package (via @ai-sdk/provider)
*/ */
export type JsonSchemaLike = JSONSchema7 export type JsonSchemaLike = JSONSchema7
/** /**
* Convert JSON Schema to Zod schema * Convert JSON Schema to Zod schema
* This avoids non-standard fields like input_examples that Anthropic doesn't support * This avoids non-standard fields like input_examples that Anthropic doesn't support
* TODO: Anthropic/beta support input_examples
*/ */
export function jsonSchemaToZod(schema: JsonSchemaLike): z.ZodTypeAny { export function jsonSchemaToZod(schema: JsonSchemaLike): z.ZodTypeAny {
const schemaType = schema.type const schemaType = schema.type