Skip to content

Commit a652d9e

Browse files
committed
Release 0.8.22
1 parent bece924 commit a652d9e

File tree

6 files changed

+27
-27
lines changed

6 files changed

+27
-27
lines changed

poetry.lock

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "humanloop"
3-
version = "0.8.21"
3+
version = "0.8.22"
44
description = ""
55
readme = "README.md"
66
authors = []

reference.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ client.prompts.log(
5656
messages=[{"role": "user", "content": "What really happened at Roswell?"}],
5757
inputs={"person": "Trump"},
5858
created_at=datetime.datetime.fromisoformat(
59-
"2024-07-19 00:29:35.178000+00:00",
59+
"2024-07-18 23:29:35.178000+00:00",
6060
),
6161
provider_latency=6.5931549072265625,
6262
output_message={
@@ -6592,10 +6592,10 @@ client.flows.log(
65926592
output="The patient is likely experiencing a myocardial infarction. Immediate medical attention is required.",
65936593
trace_status="incomplete",
65946594
start_time=datetime.datetime.fromisoformat(
6595-
"2024-07-08 22:40:35+00:00",
6595+
"2024-07-08 21:40:35+00:00",
65966596
),
65976597
end_time=datetime.datetime.fromisoformat(
6598-
"2024-07-08 22:40:39+00:00",
6598+
"2024-07-08 21:40:39+00:00",
65996599
),
66006600
)
66016601

src/humanloop/core/client_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get_headers(self) -> typing.Dict[str, str]:
1616
headers: typing.Dict[str, str] = {
1717
"X-Fern-Language": "Python",
1818
"X-Fern-SDK-Name": "humanloop",
19-
"X-Fern-SDK-Version": "0.8.21",
19+
"X-Fern-SDK-Version": "0.8.22",
2020
}
2121
headers["X-API-KEY"] = self.api_key
2222
return headers

src/humanloop/flows/client.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -202,10 +202,10 @@ def log(
202202
output="The patient is likely experiencing a myocardial infarction. Immediate medical attention is required.",
203203
trace_status="incomplete",
204204
start_time=datetime.datetime.fromisoformat(
205-
"2024-07-08 22:40:35+00:00",
205+
"2024-07-08 21:40:35+00:00",
206206
),
207207
end_time=datetime.datetime.fromisoformat(
208-
"2024-07-08 22:40:39+00:00",
208+
"2024-07-08 21:40:39+00:00",
209209
),
210210
)
211211
"""
@@ -1438,10 +1438,10 @@ async def main() -> None:
14381438
output="The patient is likely experiencing a myocardial infarction. Immediate medical attention is required.",
14391439
trace_status="incomplete",
14401440
start_time=datetime.datetime.fromisoformat(
1441-
"2024-07-08 22:40:35+00:00",
1441+
"2024-07-08 21:40:35+00:00",
14421442
),
14431443
end_time=datetime.datetime.fromisoformat(
1444-
"2024-07-08 22:40:39+00:00",
1444+
"2024-07-08 21:40:39+00:00",
14451445
),
14461446
)
14471447

src/humanloop/prompts/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def log(
236236
messages=[{"role": "user", "content": "What really happened at Roswell?"}],
237237
inputs={"person": "Trump"},
238238
created_at=datetime.datetime.fromisoformat(
239-
"2024-07-19 00:29:35.178000+00:00",
239+
"2024-07-18 23:29:35.178000+00:00",
240240
),
241241
provider_latency=6.5931549072265625,
242242
output_message={
@@ -2167,7 +2167,7 @@ async def main() -> None:
21672167
],
21682168
inputs={"person": "Trump"},
21692169
created_at=datetime.datetime.fromisoformat(
2170-
"2024-07-19 00:29:35.178000+00:00",
2170+
"2024-07-18 23:29:35.178000+00:00",
21712171
),
21722172
provider_latency=6.5931549072265625,
21732173
output_message={

0 commit comments

Comments
 (0)