letta-client 0.1.62__py3-none-any.whl → 0.1.63__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of letta-client might be problematic. Click here for more details.
- letta_client/__init__.py +12 -0
- letta_client/core/client_wrapper.py +1 -1
- letta_client/types/__init__.py +12 -0
- letta_client/types/chat_completion_user_message_param_content_item.py +5 -1
- letta_client/types/completion_create_params_non_streaming.py +2 -0
- letta_client/types/completion_create_params_non_streaming_model.py +3 -0
- letta_client/types/completion_create_params_non_streaming_response_format.py +2 -2
- letta_client/types/completion_create_params_streaming.py +2 -0
- letta_client/types/completion_create_params_streaming_model.py +3 -0
- letta_client/types/completion_create_params_streaming_response_format.py +2 -2
- letta_client/types/file.py +21 -0
- letta_client/types/file_file.py +21 -0
- letta_client/types/web_search_options.py +22 -0
- letta_client/types/web_search_options_search_context_size.py +5 -0
- letta_client/types/web_search_options_user_location.py +21 -0
- letta_client/types/web_search_options_user_location_approximate.py +22 -0
- {letta_client-0.1.62.dist-info → letta_client-0.1.63.dist-info}/METADATA +1 -1
- {letta_client-0.1.62.dist-info → letta_client-0.1.63.dist-info}/RECORD +19 -13
- {letta_client-0.1.62.dist-info → letta_client-0.1.63.dist-info}/WHEEL +0 -0
letta_client/__init__.py
CHANGED
|
@@ -76,6 +76,8 @@ from .types import (
|
|
|
76
76
|
E2BSandboxConfig,
|
|
77
77
|
EmbeddingConfig,
|
|
78
78
|
EmbeddingConfigEmbeddingEndpointType,
|
|
79
|
+
File,
|
|
80
|
+
FileFile,
|
|
79
81
|
FileMetadata,
|
|
80
82
|
FunctionCall,
|
|
81
83
|
FunctionDefinitionInput,
|
|
@@ -171,6 +173,10 @@ from .types import (
|
|
|
171
173
|
UserUpdate,
|
|
172
174
|
ValidationError,
|
|
173
175
|
ValidationErrorLocItem,
|
|
176
|
+
WebSearchOptions,
|
|
177
|
+
WebSearchOptionsSearchContextSize,
|
|
178
|
+
WebSearchOptionsUserLocation,
|
|
179
|
+
WebSearchOptionsUserLocationApproximate,
|
|
174
180
|
)
|
|
175
181
|
from .errors import ConflictError, InternalServerError, NotFoundError, UnprocessableEntityError
|
|
176
182
|
from . import (
|
|
@@ -794,6 +800,8 @@ __all__ = [
|
|
|
794
800
|
"E2BSandboxConfig",
|
|
795
801
|
"EmbeddingConfig",
|
|
796
802
|
"EmbeddingConfigEmbeddingEndpointType",
|
|
803
|
+
"File",
|
|
804
|
+
"FileFile",
|
|
797
805
|
"FileMetadata",
|
|
798
806
|
"FunctionCall",
|
|
799
807
|
"FunctionDefinitionInput",
|
|
@@ -1063,6 +1071,10 @@ __all__ = [
|
|
|
1063
1071
|
"UserUpdate",
|
|
1064
1072
|
"ValidationError",
|
|
1065
1073
|
"ValidationErrorLocItem",
|
|
1074
|
+
"WebSearchOptions",
|
|
1075
|
+
"WebSearchOptionsSearchContextSize",
|
|
1076
|
+
"WebSearchOptionsUserLocation",
|
|
1077
|
+
"WebSearchOptionsUserLocationApproximate",
|
|
1066
1078
|
"__version__",
|
|
1067
1079
|
"agents",
|
|
1068
1080
|
"blocks",
|
|
@@ -16,7 +16,7 @@ class BaseClientWrapper:
|
|
|
16
16
|
headers: typing.Dict[str, str] = {
|
|
17
17
|
"X-Fern-Language": "Python",
|
|
18
18
|
"X-Fern-SDK-Name": "letta-client",
|
|
19
|
-
"X-Fern-SDK-Version": "0.1.
|
|
19
|
+
"X-Fern-SDK-Version": "0.1.63",
|
|
20
20
|
}
|
|
21
21
|
if self.token is not None:
|
|
22
22
|
headers["Authorization"] = f"Bearer {self.token}"
|
letta_client/types/__init__.py
CHANGED
|
@@ -75,6 +75,8 @@ from .create_block import CreateBlock
|
|
|
75
75
|
from .e_2_b_sandbox_config import E2BSandboxConfig
|
|
76
76
|
from .embedding_config import EmbeddingConfig
|
|
77
77
|
from .embedding_config_embedding_endpoint_type import EmbeddingConfigEmbeddingEndpointType
|
|
78
|
+
from .file import File
|
|
79
|
+
from .file_file import FileFile
|
|
78
80
|
from .file_metadata import FileMetadata
|
|
79
81
|
from .function_call import FunctionCall
|
|
80
82
|
from .function_definition_input import FunctionDefinitionInput
|
|
@@ -174,6 +176,10 @@ from .user_message_content import UserMessageContent
|
|
|
174
176
|
from .user_update import UserUpdate
|
|
175
177
|
from .validation_error import ValidationError
|
|
176
178
|
from .validation_error_loc_item import ValidationErrorLocItem
|
|
179
|
+
from .web_search_options import WebSearchOptions
|
|
180
|
+
from .web_search_options_search_context_size import WebSearchOptionsSearchContextSize
|
|
181
|
+
from .web_search_options_user_location import WebSearchOptionsUserLocation
|
|
182
|
+
from .web_search_options_user_location_approximate import WebSearchOptionsUserLocationApproximate
|
|
177
183
|
|
|
178
184
|
__all__ = [
|
|
179
185
|
"ActionModel",
|
|
@@ -251,6 +257,8 @@ __all__ = [
|
|
|
251
257
|
"E2BSandboxConfig",
|
|
252
258
|
"EmbeddingConfig",
|
|
253
259
|
"EmbeddingConfigEmbeddingEndpointType",
|
|
260
|
+
"File",
|
|
261
|
+
"FileFile",
|
|
254
262
|
"FileMetadata",
|
|
255
263
|
"FunctionCall",
|
|
256
264
|
"FunctionDefinitionInput",
|
|
@@ -346,4 +354,8 @@ __all__ = [
|
|
|
346
354
|
"UserUpdate",
|
|
347
355
|
"ValidationError",
|
|
348
356
|
"ValidationErrorLocItem",
|
|
357
|
+
"WebSearchOptions",
|
|
358
|
+
"WebSearchOptionsSearchContextSize",
|
|
359
|
+
"WebSearchOptionsUserLocation",
|
|
360
|
+
"WebSearchOptionsUserLocationApproximate",
|
|
349
361
|
]
|
|
@@ -4,7 +4,11 @@ import typing
|
|
|
4
4
|
from .chat_completion_content_part_text_param import ChatCompletionContentPartTextParam
|
|
5
5
|
from .chat_completion_content_part_image_param import ChatCompletionContentPartImageParam
|
|
6
6
|
from .chat_completion_content_part_input_audio_param import ChatCompletionContentPartInputAudioParam
|
|
7
|
+
from .file import File
|
|
7
8
|
|
|
8
9
|
ChatCompletionUserMessageParamContentItem = typing.Union[
|
|
9
|
-
ChatCompletionContentPartTextParam,
|
|
10
|
+
ChatCompletionContentPartTextParam,
|
|
11
|
+
ChatCompletionContentPartImageParam,
|
|
12
|
+
ChatCompletionContentPartInputAudioParam,
|
|
13
|
+
File,
|
|
10
14
|
]
|
|
@@ -16,6 +16,7 @@ from .completion_create_params_non_streaming_stop import CompletionCreateParamsN
|
|
|
16
16
|
from .chat_completion_stream_options_param import ChatCompletionStreamOptionsParam
|
|
17
17
|
from .completion_create_params_non_streaming_tool_choice import CompletionCreateParamsNonStreamingToolChoice
|
|
18
18
|
from .chat_completion_tool_param import ChatCompletionToolParam
|
|
19
|
+
from .web_search_options import WebSearchOptions
|
|
19
20
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
20
21
|
import pydantic
|
|
21
22
|
|
|
@@ -50,6 +51,7 @@ class CompletionCreateParamsNonStreaming(UncheckedBaseModel):
|
|
|
50
51
|
top_logprobs: typing.Optional[int] = None
|
|
51
52
|
top_p: typing.Optional[float] = None
|
|
52
53
|
user: typing.Optional[str] = None
|
|
54
|
+
web_search_options: typing.Optional[WebSearchOptions] = None
|
|
53
55
|
stream: typing.Optional[bool] = None
|
|
54
56
|
|
|
55
57
|
if IS_PYDANTIC_V2:
|
|
@@ -12,6 +12,9 @@ CompletionCreateParamsNonStreamingModel = typing.Union[
|
|
|
12
12
|
typing.Literal["o1-preview-2024-09-12"],
|
|
13
13
|
typing.Literal["o1-mini"],
|
|
14
14
|
typing.Literal["o1-mini-2024-09-12"],
|
|
15
|
+
typing.Literal["computer-use-preview"],
|
|
16
|
+
typing.Literal["computer-use-preview-2025-02-04"],
|
|
17
|
+
typing.Literal["computer-use-preview-2025-03-11"],
|
|
15
18
|
typing.Literal["gpt-4.5-preview"],
|
|
16
19
|
typing.Literal["gpt-4.5-preview-2025-02-27"],
|
|
17
20
|
typing.Literal["gpt-4o"],
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
import typing
|
|
4
4
|
from .response_format_text import ResponseFormatText
|
|
5
|
-
from .response_format_json_object import ResponseFormatJsonObject
|
|
6
5
|
from .response_format_json_schema import ResponseFormatJsonSchema
|
|
6
|
+
from .response_format_json_object import ResponseFormatJsonObject
|
|
7
7
|
|
|
8
8
|
CompletionCreateParamsNonStreamingResponseFormat = typing.Union[
|
|
9
|
-
ResponseFormatText,
|
|
9
|
+
ResponseFormatText, ResponseFormatJsonSchema, ResponseFormatJsonObject
|
|
10
10
|
]
|
|
@@ -16,6 +16,7 @@ from .completion_create_params_streaming_stop import CompletionCreateParamsStrea
|
|
|
16
16
|
from .chat_completion_stream_options_param import ChatCompletionStreamOptionsParam
|
|
17
17
|
from .completion_create_params_streaming_tool_choice import CompletionCreateParamsStreamingToolChoice
|
|
18
18
|
from .chat_completion_tool_param import ChatCompletionToolParam
|
|
19
|
+
from .web_search_options import WebSearchOptions
|
|
19
20
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
20
21
|
import pydantic
|
|
21
22
|
|
|
@@ -50,6 +51,7 @@ class CompletionCreateParamsStreaming(UncheckedBaseModel):
|
|
|
50
51
|
top_logprobs: typing.Optional[int] = None
|
|
51
52
|
top_p: typing.Optional[float] = None
|
|
52
53
|
user: typing.Optional[str] = None
|
|
54
|
+
web_search_options: typing.Optional[WebSearchOptions] = None
|
|
53
55
|
stream: bool
|
|
54
56
|
|
|
55
57
|
if IS_PYDANTIC_V2:
|
|
@@ -12,6 +12,9 @@ CompletionCreateParamsStreamingModel = typing.Union[
|
|
|
12
12
|
typing.Literal["o1-preview-2024-09-12"],
|
|
13
13
|
typing.Literal["o1-mini"],
|
|
14
14
|
typing.Literal["o1-mini-2024-09-12"],
|
|
15
|
+
typing.Literal["computer-use-preview"],
|
|
16
|
+
typing.Literal["computer-use-preview-2025-02-04"],
|
|
17
|
+
typing.Literal["computer-use-preview-2025-03-11"],
|
|
15
18
|
typing.Literal["gpt-4.5-preview"],
|
|
16
19
|
typing.Literal["gpt-4.5-preview-2025-02-27"],
|
|
17
20
|
typing.Literal["gpt-4o"],
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
import typing
|
|
4
4
|
from .response_format_text import ResponseFormatText
|
|
5
|
-
from .response_format_json_object import ResponseFormatJsonObject
|
|
6
5
|
from .response_format_json_schema import ResponseFormatJsonSchema
|
|
6
|
+
from .response_format_json_object import ResponseFormatJsonObject
|
|
7
7
|
|
|
8
8
|
CompletionCreateParamsStreamingResponseFormat = typing.Union[
|
|
9
|
-
ResponseFormatText,
|
|
9
|
+
ResponseFormatText, ResponseFormatJsonSchema, ResponseFormatJsonObject
|
|
10
10
|
]
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
+
from .file_file import FileFile
|
|
5
|
+
import typing
|
|
6
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
|
+
import pydantic
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class File(UncheckedBaseModel):
|
|
11
|
+
file: FileFile
|
|
12
|
+
type: typing.Literal["file"] = "file"
|
|
13
|
+
|
|
14
|
+
if IS_PYDANTIC_V2:
|
|
15
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
16
|
+
else:
|
|
17
|
+
|
|
18
|
+
class Config:
|
|
19
|
+
frozen = True
|
|
20
|
+
smart_union = True
|
|
21
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
+
import typing
|
|
5
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
6
|
+
import pydantic
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class FileFile(UncheckedBaseModel):
|
|
10
|
+
file_data: typing.Optional[str] = None
|
|
11
|
+
file_id: typing.Optional[str] = None
|
|
12
|
+
file_name: typing.Optional[str] = None
|
|
13
|
+
|
|
14
|
+
if IS_PYDANTIC_V2:
|
|
15
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
16
|
+
else:
|
|
17
|
+
|
|
18
|
+
class Config:
|
|
19
|
+
frozen = True
|
|
20
|
+
smart_union = True
|
|
21
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
+
import typing
|
|
5
|
+
from .web_search_options_search_context_size import WebSearchOptionsSearchContextSize
|
|
6
|
+
from .web_search_options_user_location import WebSearchOptionsUserLocation
|
|
7
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
8
|
+
import pydantic
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class WebSearchOptions(UncheckedBaseModel):
|
|
12
|
+
search_context_size: typing.Optional[WebSearchOptionsSearchContextSize] = None
|
|
13
|
+
user_location: typing.Optional[WebSearchOptionsUserLocation] = None
|
|
14
|
+
|
|
15
|
+
if IS_PYDANTIC_V2:
|
|
16
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
17
|
+
else:
|
|
18
|
+
|
|
19
|
+
class Config:
|
|
20
|
+
frozen = True
|
|
21
|
+
smart_union = True
|
|
22
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
+
from .web_search_options_user_location_approximate import WebSearchOptionsUserLocationApproximate
|
|
5
|
+
import typing
|
|
6
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
|
+
import pydantic
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class WebSearchOptionsUserLocation(UncheckedBaseModel):
|
|
11
|
+
approximate: WebSearchOptionsUserLocationApproximate
|
|
12
|
+
type: typing.Literal["approximate"] = "approximate"
|
|
13
|
+
|
|
14
|
+
if IS_PYDANTIC_V2:
|
|
15
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
16
|
+
else:
|
|
17
|
+
|
|
18
|
+
class Config:
|
|
19
|
+
frozen = True
|
|
20
|
+
smart_union = True
|
|
21
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
+
import typing
|
|
5
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
6
|
+
import pydantic
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class WebSearchOptionsUserLocationApproximate(UncheckedBaseModel):
|
|
10
|
+
city: typing.Optional[str] = None
|
|
11
|
+
country: typing.Optional[str] = None
|
|
12
|
+
region: typing.Optional[str] = None
|
|
13
|
+
timezone: typing.Optional[str] = None
|
|
14
|
+
|
|
15
|
+
if IS_PYDANTIC_V2:
|
|
16
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
17
|
+
else:
|
|
18
|
+
|
|
19
|
+
class Config:
|
|
20
|
+
frozen = True
|
|
21
|
+
smart_union = True
|
|
22
|
+
extra = pydantic.Extra.allow
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
letta_client/__init__.py,sha256=
|
|
1
|
+
letta_client/__init__.py,sha256=XI9aEKVo3wgE4dLFMArNCIkEgdcjYyesSas1J-MoOBg,57220
|
|
2
2
|
letta_client/agents/__init__.py,sha256=ePMwPIgzTgDIbCr1wR1Zch36fvKau2B1mOFmjt47CsE,22440
|
|
3
3
|
letta_client/agents/blocks/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
4
4
|
letta_client/agents/blocks/client.py,sha256=u5zvutxoH_DqfSLWhRtNSRBC9_ezQDx682cxkxDz3JA,23822
|
|
@@ -210,7 +210,7 @@ letta_client/blocks/client.py,sha256=AeQQ-IdYhV-zqLTt3PTrJOtJ6XtBZcXNC108Y5EogVU
|
|
|
210
210
|
letta_client/client.py,sha256=xdSrD4IkWokZHujowd1r7zESBoVgKGNvo6RqgZ3f0Fg,12808
|
|
211
211
|
letta_client/core/__init__.py,sha256=OKbX2aCZXgHCDUsCouqv-OiX32xA6eFFCKIUH9M5Vzk,1591
|
|
212
212
|
letta_client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
213
|
-
letta_client/core/client_wrapper.py,sha256=
|
|
213
|
+
letta_client/core/client_wrapper.py,sha256=sZG-Iql_hgMC1tRDjObc29XNdDfrEEnTUNgUsGSpXX0,1997
|
|
214
214
|
letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
215
215
|
letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
216
216
|
letta_client/core/http_client.py,sha256=Z77OIxIbL4OAB2IDqjRq_sYa5yNYAWfmdhdCSSvh6Y4,19552
|
|
@@ -423,7 +423,7 @@ letta_client/templates/types/templates_create_agents_response_agents_item_update
|
|
|
423
423
|
letta_client/templates/types/templates_create_agents_response_agents_item_updated_at_item.py,sha256=T3rYnv5m_cBAEPBnEjUkkHJLYtFZfXNMbb7a9FrIwKY,175
|
|
424
424
|
letta_client/tools/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
425
425
|
letta_client/tools/client.py,sha256=Oyds2HAtLITB0vGiSjAgJhv2EhJP_7JHj9X7zCAgJDk,55555
|
|
426
|
-
letta_client/types/__init__.py,sha256=
|
|
426
|
+
letta_client/types/__init__.py,sha256=1EUV5A0eRKo-vhXbUKX_pp2-Vph-557XiQ1Xv_KyGog,16490
|
|
427
427
|
letta_client/types/action_model.py,sha256=y1e2XMv3skFaNJIBdYoBKgiORzGh05aOVvu-qVR9uHg,1240
|
|
428
428
|
letta_client/types/action_parameters_model.py,sha256=LgKf5aPZG3-OHGxFdXiSokIDgce8c02xPYIAY05VgW8,828
|
|
429
429
|
letta_client/types/action_response_model.py,sha256=yq2Fd9UU8j7vvtE3VqXUoRRvDzWcfJPj_95ynGdeHCs,824
|
|
@@ -469,25 +469,25 @@ letta_client/types/chat_completion_tool_message_param_content.py,sha256=PAHog1bP
|
|
|
469
469
|
letta_client/types/chat_completion_tool_param.py,sha256=jwgKq_3AW8ybc9xVr9JyNSFqTs5mTeNffBQimBRAWPk,705
|
|
470
470
|
letta_client/types/chat_completion_user_message_param.py,sha256=EWz44TKVGV7B2BcPSJ8Qr8R8unJXzsN4R9ziixZvrZs,786
|
|
471
471
|
letta_client/types/chat_completion_user_message_param_content.py,sha256=XNFFnok5yM6oBXB6aiUo0aFw53jT8BUjt88HFjJUiU8,297
|
|
472
|
-
letta_client/types/chat_completion_user_message_param_content_item.py,sha256=
|
|
472
|
+
letta_client/types/chat_completion_user_message_param_content_item.py,sha256=ONQbm9RX1bbM9KO8a9mbWHyUEIuOq70wPiVFMhagLbU,579
|
|
473
473
|
letta_client/types/child_tool_rule.py,sha256=7mJ9h_V75JE0RmGWpZfHuavzVt7ctz77GZvg6OH-xNM,951
|
|
474
|
-
letta_client/types/completion_create_params_non_streaming.py,sha256=
|
|
474
|
+
letta_client/types/completion_create_params_non_streaming.py,sha256=hjEJ-wJWuFuTy4Y73RIllBa1EMisK9gr7yQd8rrv_r8,4008
|
|
475
475
|
letta_client/types/completion_create_params_non_streaming_function_call.py,sha256=6iCjgXwsXnflllhfDDKtHRyxzKqtLcX6-HVr7AXlyUM,329
|
|
476
476
|
letta_client/types/completion_create_params_non_streaming_messages_item.py,sha256=pKMxLh1XFgMl7LqcjKJmdeKYTCwlr3FLFPTuvaLf3D0,883
|
|
477
477
|
letta_client/types/completion_create_params_non_streaming_modalities_item.py,sha256=BuyCf2nTCWVhishXFk3CsQphnPwNXj-kBdPMjkb8X10,189
|
|
478
|
-
letta_client/types/completion_create_params_non_streaming_model.py,sha256=
|
|
478
|
+
letta_client/types/completion_create_params_non_streaming_model.py,sha256=bWeGbuTRstRZEW3AiHwZIeHFnsLWGRI5wfrpWxv91ko,1966
|
|
479
479
|
letta_client/types/completion_create_params_non_streaming_reasoning_effort.py,sha256=f1hBX3qksGoGC6O2W5qHblCQXtoZiEhiN8LUy1Rv9Ig,198
|
|
480
|
-
letta_client/types/completion_create_params_non_streaming_response_format.py,sha256=
|
|
480
|
+
letta_client/types/completion_create_params_non_streaming_response_format.py,sha256=c16kBch59yhxAgMeFTxGNrEBNl4Vu3fPmZ2RqqS6bkU,407
|
|
481
481
|
letta_client/types/completion_create_params_non_streaming_service_tier.py,sha256=Tfw62WLF3WSHWZy8VOVXal1INDQNtZhoB8DSA0btJ0g,188
|
|
482
482
|
letta_client/types/completion_create_params_non_streaming_stop.py,sha256=5vPdgab7iH6eDizESU2_CMieWN5CN3pF8TZs-Zb7rMw,157
|
|
483
483
|
letta_client/types/completion_create_params_non_streaming_tool_choice.py,sha256=jP4qKEF5-TOkBHebni-L9eNpbPnIEpv7fa6v4K_L5U8,346
|
|
484
|
-
letta_client/types/completion_create_params_streaming.py,sha256=
|
|
484
|
+
letta_client/types/completion_create_params_streaming.py,sha256=sgazDkBKpQTk2NtrJ0l7F0moftbl-zgpw6lkEQt6ha0,3891
|
|
485
485
|
letta_client/types/completion_create_params_streaming_function_call.py,sha256=cxsVe0wAIKPAsndL5vB_BCTy6oSxFph7qB1c1LWmeDw,326
|
|
486
486
|
letta_client/types/completion_create_params_streaming_messages_item.py,sha256=S4E0fe3LgVyetb2PEqhGNxqMj5kgQx4q6Qk2bvvu2Ok,880
|
|
487
487
|
letta_client/types/completion_create_params_streaming_modalities_item.py,sha256=o9ZU7r22WrE6z-BSJ72LJXHtVRIpK499WArVgY-ODgI,186
|
|
488
|
-
letta_client/types/completion_create_params_streaming_model.py,sha256=
|
|
488
|
+
letta_client/types/completion_create_params_streaming_model.py,sha256=ESDrTKo0396c3uH7-bxu9Xu7--e0RnBLmuVUN_0R3ho,1963
|
|
489
489
|
letta_client/types/completion_create_params_streaming_reasoning_effort.py,sha256=4-JFyaD92zia-kN7bPyCWwf_AMDnG2xUXWx8GQU1EFE,195
|
|
490
|
-
letta_client/types/completion_create_params_streaming_response_format.py,sha256=
|
|
490
|
+
letta_client/types/completion_create_params_streaming_response_format.py,sha256=31sy6fKZ4r50zvjVTnoOpwNX81Bx7kFM75Mn7-obbYI,404
|
|
491
491
|
letta_client/types/completion_create_params_streaming_service_tier.py,sha256=chHakgbKOYCMtxdtGmP85rcjGkyOqt2S_JJ9SabSd-o,185
|
|
492
492
|
letta_client/types/completion_create_params_streaming_stop.py,sha256=dSyQDu851QyeoRjpoE2JBIyKIYGO5jVx6UIH-bLiQwo,154
|
|
493
493
|
letta_client/types/completion_create_params_streaming_tool_choice.py,sha256=w_JLYtdz8eHzF2lwlMaMGpnOl8_4mjGbsDOSpMyM5cg,343
|
|
@@ -499,6 +499,8 @@ letta_client/types/create_block.py,sha256=V57mbqUkh5c-HcDxmIiFVr3tNfoqx-WJ1GRQZP
|
|
|
499
499
|
letta_client/types/e_2_b_sandbox_config.py,sha256=w3R4QpPjeie5aKw8sb_eKhl78J0k5vLCcATNS3Qaeyw,957
|
|
500
500
|
letta_client/types/embedding_config.py,sha256=ubGDLn8_H1qOoZUUj6de0MVrQnM2umVR2vdnOolPyr4,2539
|
|
501
501
|
letta_client/types/embedding_config_embedding_endpoint_type.py,sha256=Ho1HSODi21PkzsZR58g7FlIMReFU2yf0hAS5OyUsW6Q,559
|
|
502
|
+
letta_client/types/file.py,sha256=ZLCEYJqIJ1pzAJn4Pke6gVdKivKU9FrIg98P4GmFY8M,628
|
|
503
|
+
letta_client/types/file_file.py,sha256=5hunDKL7BFz4jvXp9X2oF_YH50Veg1G19fBOQBVcuCQ,666
|
|
502
504
|
letta_client/types/file_metadata.py,sha256=vORZH5WZO8AwAuKq0h0W9TTuydjmDlkZC6YyZMy2jbc,1973
|
|
503
505
|
letta_client/types/function_call.py,sha256=eE6VYWK3A-2xRrIV-QKqrofvaVFcPNqSzl6lrWnopZA,576
|
|
504
506
|
letta_client/types/function_definition_input.py,sha256=UpoD7ftRpHquJ5zhy28TjXPBVzxj7rOHKv3gX84Nfj8,740
|
|
@@ -594,11 +596,15 @@ letta_client/types/user_message_content.py,sha256=qqNvpEusXfMaf_jKqVchqhKtAyahNA
|
|
|
594
596
|
letta_client/types/user_update.py,sha256=0Bl1OjO7bfmlpsGQ36dSh6DH1UB_wJOTNewS0wDLkP4,731
|
|
595
597
|
letta_client/types/validation_error.py,sha256=ACDS7wL5nQbS8ymFhWljwbBJmbugNa8bs2O5xEZC3u4,680
|
|
596
598
|
letta_client/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
|
|
599
|
+
letta_client/types/web_search_options.py,sha256=ENx_YMOh8Dxj6q57LvuM7Qmq_j2h5WJh9D91lbBnj90,863
|
|
600
|
+
letta_client/types/web_search_options_search_context_size.py,sha256=RgJGV4rkuaCTcaS4zsw_MWzRlTYpyNT9QqzNvpd1Gno,182
|
|
601
|
+
letta_client/types/web_search_options_user_location.py,sha256=4aXfFcwUBu7YNA5XBjfhmD6tgRb0e8LTFexmn-rkDfw,770
|
|
602
|
+
letta_client/types/web_search_options_user_location_approximate.py,sha256=Ywk01J9H67L6_498E5E6ceJ2VbJUfcLiIJWD_s92_M0,731
|
|
597
603
|
letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
|
|
598
604
|
letta_client/voice/__init__.py,sha256=ZrZEuXIukVGhsfM-i0dIFfqjeSOBMPeEgDva7VvnipE,167
|
|
599
605
|
letta_client/voice/client.py,sha256=O38dLq__WTwLPlFTtvw1hgqaPYK9alds_ft12Bnp5fs,6475
|
|
600
606
|
letta_client/voice/types/__init__.py,sha256=hBLJcrom99DkDxxsVRU2ni8kPx6SsCy8gtAJvNOz26w,199
|
|
601
607
|
letta_client/voice/types/create_voice_chat_completions_request.py,sha256=K4__83rXRCshfdobyAmH-5fUDJQ_PeSQetTUeC4Abk0,381
|
|
602
|
-
letta_client-0.1.
|
|
603
|
-
letta_client-0.1.
|
|
604
|
-
letta_client-0.1.
|
|
608
|
+
letta_client-0.1.63.dist-info/METADATA,sha256=JRIw6nSLb5gyGcXJjO8EdyD6TvhrDW50ZCRSas3rzO8,4942
|
|
609
|
+
letta_client-0.1.63.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
610
|
+
letta_client-0.1.63.dist-info/RECORD,,
|
|
File without changes
|