UNPKG

@dooor-ai/toolkit

Version:

Guards, Evals & Observability for AI applications - works seamlessly with LangChain/LangGraph

16 lines (15 loc) 540 B
"use strict"; /** * RAG (Retrieval-Augmented Generation) types for DOOOR AI Toolkit */ Object.defineProperty(exports, "__esModule", { value: true }); exports.RAGStrategy = void 0; var RAGStrategy; (function (RAGStrategy) { RAGStrategy["SIMPLE"] = "simple"; RAGStrategy["MULTI_QUERY"] = "multi_query"; RAGStrategy["HYDE"] = "hyde"; RAGStrategy["RERANK"] = "rerank"; RAGStrategy["FUSION"] = "fusion"; RAGStrategy["CONTEXTUAL_QUERY"] = "contextual_query"; })(RAGStrategy || (exports.RAGStrategy = RAGStrategy = {}));