VariableValue
Discriminated union representing the value supplied for a PromptVariable. Themodality field on the inner instance determines the concrete type.
Import
Variants
modality | Type | Description |
|---|---|---|
"text" | TextContent | Plain text value |
"image" | ImageContent | Image (URL or base64) |
"pdf" | PdfContent | PDF document |
"api" | ApiContent | External API data source |
"prompt" | PromptContent | Nested prompt reference |
Example
Type narrowing
Related
- PromptVariable — variable definition that this value satisfies
- TextContent — text variant
- ImageContent — image variant
- PdfContent — PDF variant