Tiny schema used to validate provider structured-output wiring.
| 31 | |
| 32 | |
| 33 | class ProviderResult(BaseModel): |
| 34 | """Tiny schema used to validate provider structured-output wiring.""" |
| 35 | |
| 36 | ok: bool = Field(description="Whether the provider request succeeded.") |
| 37 | |
| 38 | |
| 39 | def _skip_without_env(name: str) -> str: |
no outgoing calls