PromptExample interface exported

Last updated: 2026-03-03T11:04:37.489Z

Metrics

LOC: 4 Complexity: 1 Params: 0

Signature

interface PromptExample

Summary

A single input → output example for few-shot prompting.

Source Code

export interface PromptExample {
  readonly input: string;
  readonly output: string;
}

No outgoing dependencies.

Impact (Incoming)

graph LR PromptExample["PromptExample"] renderOutputSchema["renderOutputSchema"] renderOutputSchema -->|uses| PromptExample style PromptExample fill:#dbeafe,stroke:#2563eb,stroke-width:2px click PromptExample "1a94fb1b59e5d12f.html" click renderOutputSchema "a94ee40c258cb1af.html"
SourceType
renderOutputSchema uses