Type Alias LoadEvaluatorOptions
LoadEvaluatorOptions: { agentTools?: undefined | StructuredToolInterface<ZodObjectAny>[]; chainOptions?: undefined | Partial<Omit<LLMEvalChainInput<EvalOutputType, BaseLanguageModelInterface<any, BaseLanguageModelCallOptions>>, "llm">>; criteria?: undefined | CriteriaLike; distanceMetric?: undefined | EmbeddingDistanceType; embedding?: undefined | EmbeddingsInterface; llm?: undefined | BaseLanguageModelInterface<any, BaseLanguageModelCallOptions>; } Type declaration
Optional
agentTools?: undefined | StructuredToolInterface<ZodObjectAny>[]
Optional
chainOptions?: undefined | Partial<Omit<LLMEvalChainInput<EvalOutputType, BaseLanguageModelInterface<any, BaseLanguageModelCallOptions>>, "llm">>
Optional
criteria?: undefined | CriteriaLike
Optional
embedding?: undefined | EmbeddingsInterface
Optional
llm?: undefined | BaseLanguageModelInterface<any, BaseLanguageModelCallOptions>
A list of tools available to the agent, for TrajectoryEvalChain.