interface GraphCypherQAChainInput {
    cypherGenerationChain: LLMChain<string, any>;
    graph: Neo4jGraph;
    qaChain: LLMChain<string, any>;
    callbackManager?: any;
    inputKey?: string;
    memory?: any;
    outputKey?: string;
    returnDirect?: boolean;
    returnIntermediateSteps?: boolean;
    topK?: number;
}

Hierarchy (view full)

Properties

cypherGenerationChain: LLMChain<string, any>
graph: Neo4jGraph
qaChain: LLMChain<string, any>
callbackManager?: any

⚠️ Deprecated ⚠️

Use callbacks instead

This feature is deprecated and will be removed in the future.

It is not recommended for use.

inputKey?: string
memory?: any
outputKey?: string
returnDirect?: boolean
returnIntermediateSteps?: boolean
topK?: number

Generated using TypeDoc