mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 16:44:07 -08:00
28 lines
1.1 KiB
TypeScript
28 lines
1.1 KiB
TypeScript
import { jsonSchemaToZod } from '@n8n/json-schema-to-zod';
|
|
import { json as generateJsonSchema } from 'generate-schema';
|
|
import type { SchemaObject } from 'generate-schema';
|
|
import type { JSONSchema7 } from 'json-schema';
|
|
import type { IExecuteFunctions } from 'n8n-workflow';
|
|
import { NodeOperationError, jsonParse } from 'n8n-workflow';
|
|
import type { z } from 'zod';
|
|
|
|
export function generateSchema(schemaString: string): JSONSchema7 {
|
|
const parsedSchema = jsonParse<SchemaObject>(schemaString);
|
|
|
|
return generateJsonSchema(parsedSchema) as JSONSchema7;
|
|
}
|
|
|
|
export function convertJsonSchemaToZod<T extends z.ZodTypeAny = z.ZodTypeAny>(schema: JSONSchema7) {
|
|
return jsonSchemaToZod<T>(schema);
|
|
}
|
|
|
|
export function throwIfToolSchema(ctx: IExecuteFunctions, error: Error) {
|
|
if (error?.message?.includes('tool input did not match expected schema')) {
|
|
throw new NodeOperationError(
|
|
ctx.getNode(),
|
|
`${error.message}.
|
|
This is most likely because some of your tools are configured to require a specific schema. This is not supported by Conversational Agent. Remove the schema from the tool configuration or use Tools agent instead.`,
|
|
);
|
|
}
|
|
}
|