-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathconversation_parts.py
More file actions
38 lines (27 loc) · 1.34 KB
/
conversation_parts.py
File metadata and controls
38 lines (27 loc) · 1.34 KB
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
29
30
31
32
33
34
35
36
37
38
# 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
from .conversation_part import ConversationPart
class ConversationParts(UncheckedBaseModel):
"""
A list of Conversation Part objects for each part message in the conversation. This is only returned when Retrieving a Conversation, and ignored when Listing all Conversations. There is a limit of 500 parts.
"""
type: typing.Optional[typing.Literal["conversation_part.list"]] = pydantic.Field(default=None)
"""
"""
conversation_parts: typing.Optional[typing.List[ConversationPart]] = pydantic.Field(default=None)
"""
A list of Conversation Part objects for each part message in the conversation. This is only returned when Retrieving a Conversation, and ignored when Listing all Conversations. There is a limit of 500 parts.
"""
total_count: typing.Optional[int] = pydantic.Field(default=None)
"""
"""
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