interface GraphCypherQAChainInput {
    cypherGenerationChain: LLMChain;
    graph: Neo4jGraph;
    qaChain: LLMChain;
    inputKey?: string;
    outputKey?: string;
    returnDirect?: boolean;
    returnIntermediateSteps?: boolean;
    topK?: number;
}

Hierarchy (view full)

Properties

cypherGenerationChain: LLMChain
graph: Neo4jGraph
qaChain: LLMChain
inputKey?: string
outputKey?: string
returnDirect?: boolean
returnIntermediateSteps?: boolean
topK?: number

Generated using TypeDoc