Represents a structured response request from the client.
| 188 | |
| 189 | @dataclass |
| 190 | class StructuredOutputRequirement: |
| 191 | """Represents a structured response request from the client.""" |
| 192 | |
| 193 | schema_name: str |
| 194 | schema: dict[str, Any] |
| 195 | instruction: str |
| 196 | raw_format: dict[str, Any] |
| 197 | |
| 198 | |
| 199 | # --- Helper Functions --- |
no outgoing calls
no test coverage detected