Quick Start
Output Formats
| Format | Use Case |
|---|---|
String | Plain text (default) |
T: Deserialize | Any struct |
Vec<T> | Lists |
HashMap | Key-value data |
Best Practices
Define clear schemas
Define clear schemas
Well-defined types help the LLM produce correct output.
Use serde for serialization
Use serde for serialization
Derive Serialize and Deserialize for your types.

