Update api spec (#186)
* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
ec68e67645
commit
8bebb40c9f
@ -5,7 +5,12 @@ from pydantic import BaseModel, ConfigDict
|
||||
|
||||
|
||||
class OutputFile(BaseModel):
|
||||
"""Output file contents."""
|
||||
"""Output file contents.
|
||||
|
||||
<details><summary>JSON schema</summary>
|
||||
|
||||
```json { "description": "Output file contents.", "type": "object", "properties": { "contents": { "description": "The contents of the file. This is base64 encoded so we can ensure it is UTF-8 for JSON.", "type": "string" }, "name": { "description": "The name of the file.", "default": "", "type": "string" } } } ``` </details>
|
||||
"""
|
||||
|
||||
contents: Optional[str] = None
|
||||
|
||||
|
Reference in New Issue
Block a user