RAG query step

interface RAGStep {
    type: "rag";
    id: string;
    query: StepInput;
    pipeline: string;
    topK?: number;
    output?: string;
}

Properties

type: "rag"
id: string
query: StepInput
pipeline: string
topK?: number
output?: string