Interface StructuredChatOutputParserArgs

An interface for the arguments used to construct a StructuredChatOutputParserWithRetries instance.

interface StructuredChatOutputParserArgs {
    baseParser?: StructuredChatOutputParser;
    outputFixingParser?: OutputFixingParser<AgentAction | AgentFinish>;
    toolNames?: string[];
}

Properties

toolNames?: string[]