Skip to content

Commit 0c26ddd

Browse files
committed
Release 0.1.317
1 parent a7be1f5 commit 0c26ddd

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "letta-client"
33

44
[tool.poetry]
55
name = "letta-client"
6-
version = "0.1.316"
6+
version = "0.1.317"
77
description = ""
88
readme = "README.md"
99
authors = []

src/letta_client/core/client_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ def __init__(
2424

2525
def get_headers(self) -> typing.Dict[str, str]:
2626
headers: typing.Dict[str, str] = {
27-
"User-Agent": "letta-client/0.1.316",
27+
"User-Agent": "letta-client/0.1.317",
2828
"X-Fern-Language": "Python",
2929
"X-Fern-SDK-Name": "letta-client",
30-
"X-Fern-SDK-Version": "0.1.316",
30+
"X-Fern-SDK-Version": "0.1.317",
3131
**(self.get_custom_headers() or {}),
3232
}
3333
if self._project is not None:

src/letta_client/runs/types/letta_streaming_response.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22

33
import typing
44

5+
from ...types.approval_request_message import ApprovalRequestMessage
6+
from ...types.approval_response_message import ApprovalResponseMessage
57
from ...types.assistant_message import AssistantMessage
8+
from ...types.hidden_reasoning_message import HiddenReasoningMessage
69
from ...types.letta_ping import LettaPing
710
from ...types.letta_stop_reason import LettaStopReason
811
from ...types.letta_usage_statistics import LettaUsageStatistics
@@ -16,9 +19,12 @@
1619
SystemMessage,
1720
UserMessage,
1821
ReasoningMessage,
22+
HiddenReasoningMessage,
1923
ToolCallMessage,
2024
ToolReturnMessage,
2125
AssistantMessage,
26+
ApprovalRequestMessage,
27+
ApprovalResponseMessage,
2228
LettaPing,
2329
LettaStopReason,
2430
LettaUsageStatistics,

0 commit comments

Comments
 (0)