UNPKG

llama-flow

Version:

The Typescript-first prompt engineering toolkit for working with chat based LLMs.

4 lines 221 B
import { z } from 'zod'; import type { JSONPrompt, RawPrompt } from '../types'; export default function buildRawPrompt<T extends z.ZodType>(prompt: JSONPrompt<T>): RawPrompt<z.infer<T>>; //# sourceMappingURL=json.d.ts.map