Function createTaggingChainFromZod

  • Function that creates a tagging chain from a Zod schema. It converts the Zod schema to a JSON schema using the zodToJsonSchema function and then calls createTaggingChain with the converted schema.

    Parameters

    • schema: ZodObject<any, any, any, any, {}>

      The Zod schema which extracted data should match.

    • llm: BaseChatModel<BaseFunctionCallOptions>

      LLM to use in the chain. Must support function calling.

    • Optional options: TaggingChainOptions

      Options for creating the tagging chain.

    Returns LLMChain<object, BaseChatModel<BaseFunctionCallOptions>>

    A new instance of LLMChain configured for tagging.

Generated using TypeDoc