-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfile_request.py
More file actions
28 lines (21 loc) · 901 Bytes
/
file_request.py
File metadata and controls
28 lines (21 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# This file was auto-generated by Fern from our API Definition.
import typing
import pydantic
from ..core.pydantic_utilities import IS_PYDANTIC_V2
from ..core.unchecked_base_model import UncheckedBaseModel
class FileRequest(UncheckedBaseModel):
id: typing.Optional[str] = pydantic.Field(default=None)
"""
ID for an existing File.
"""
path: typing.Optional[str] = pydantic.Field(default=None)
"""
Path of the File, including the name. This locates the File in the Humanloop filesystem and is used as as a unique identifier. For example: `folder/name` or just `name`.
"""
if IS_PYDANTIC_V2:
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
else:
class Config:
frozen = True
smart_union = True
extra = pydantic.Extra.allow