interface FromLLMInput {
    graph: any;
    cypherLLM?: BaseLanguageModelInterface<any, BaseLanguageModelCallOptions>;
    cypherPrompt?: BasePromptTemplate<any, BasePromptValueInterface, any>;
    llm?: BaseLanguageModelInterface<any, BaseLanguageModelCallOptions>;
    qaLLM?: BaseLanguageModelInterface<any, BaseLanguageModelCallOptions>;
    qaPrompt?: BasePromptTemplate<any, BasePromptValueInterface, any>;
    returnDirect?: boolean;
    returnIntermediateSteps?: boolean;
}

Properties

graph: any
cypherLLM?: BaseLanguageModelInterface<any, BaseLanguageModelCallOptions>
cypherPrompt?: BasePromptTemplate<any, BasePromptValueInterface, any>
llm?: BaseLanguageModelInterface<any, BaseLanguageModelCallOptions>
qaLLM?: BaseLanguageModelInterface<any, BaseLanguageModelCallOptions>
qaPrompt?: BasePromptTemplate<any, BasePromptValueInterface, any>
returnDirect?: boolean
returnIntermediateSteps?: boolean

Generated using TypeDoc