UNPKG

ludmi

Version:

LU (Layer Understanding) is a lightweight framework for controlled chatbot interactions with LLMs, action orchestration, and retrieval-augmented generation (RAG).

15 lines (14 loc) 474 B
import { Actions, Messages, ResultOrq } from "../types/luTypes"; interface OrchestratorProps { metadata?: any; topics: any; input: string; temperature?: number; revised?: string; history?: Messages; sizeHistory?: number; actions?: Actions; userData: any; } export declare const orchestrator: ({ history, input, revised, sizeHistory, topics, userData, actions, metadata, temperature }: OrchestratorProps) => Promise<ResultOrq>; export {};