feat: move to overload typing for stream:true intent for sse

This commit is contained in:
David Alberto Adler
2025-09-08 12:21:06 +01:00
parent 2988b5e385
commit 80fd801021
129 changed files with 1218 additions and 3872 deletions
+37
View File
@@ -0,0 +1,37 @@
# ResponseFormat
Response format configuration
## Supported Types
### `models.ResponseFormatText`
```python
value: models.ResponseFormatText = /* values here */
```
### `models.ResponseFormatJSONObject`
```python
value: models.ResponseFormatJSONObject = /* values here */
```
### `models.ResponseFormatJSONSchema`
```python
value: models.ResponseFormatJSONSchema = /* values here */
```
### `models.ResponseFormatGrammar`
```python
value: models.ResponseFormatGrammar = /* values here */
```
### `models.ResponseFormatPython`
```python
value: models.ResponseFormatPython = /* values here */
```