ludmi
Version:
LU (Layer Understanding) is a lightweight framework for controlled chatbot interactions with LLMs, action orchestration, and retrieval-augmented generation (RAG).
8 lines (7 loc) • 361 B
TypeScript
export { classifier } from "./lu/classifier";
export { knowledgeBaseByJSON, knowledgeBaseByText } from "./lu/knowledgeBase";
export { rag, retriever } from "./lu/retriever";
export { orchestrator } from "./lu/orchestrator";
export { getAIResponse, getEmbeddings } from "./lu/llm/openai";
export { JSONparse } from "./lu/parse";
export * from "./types/luTypes";