UNPKG

selvedge

Version:

A type-safe, declarative DSL for building robust, composable LLM prompts and programs in TypeScript. Selvedge simplifies prompt engineering, structured output, and multi-model orchestration.

15 lines 382 B
import { SelvedgeInstance } from './types'; /** * The main Selvedge instance that provides access to all library functionality */ export declare const selvedge: SelvedgeInstance; /** * Version information for the library */ export declare const version: { major: number; minor: number; patch: number; toString: () => string; }; //# sourceMappingURL=core.d.ts.map