@ts-dspy/core
Version:
Core library for building type-safe LLM applications with structured input/output signatures, automatic validation, and reasoning patterns within TypeScript
11 lines • 577 B
TypeScript
export * from './types';
export { Signature, InputField, OutputField } from './core/signature';
export { Module } from './core/module';
export { Prediction } from './core/prediction';
export { Example } from './core/example';
export { configure, getDefaultLM, isCacheEnabled, isTracingEnabled } from './core/config';
export { Predict } from './modules/predict';
export { ChainOfThought } from './modules/chain-of-thought';
export { RespAct, ToolFunction } from './modules/respact';
export { buildPrompt, parseOutput } from './utils/parsing';
//# sourceMappingURL=index.d.ts.map