Skip to content

Commit 8490906

Browse files
committed
Release 0.8.22b1
1 parent c21433a commit 8490906

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

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.22"
3+
version = "0.8.22b1"
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-18 23:29:35.178000+00:00",
59+
"2024-07-19 00:29:35.178000+00:00",
6060
),
6161
provider_latency=6.5931549072265625,
6262
output_message={
@@ -6572,10 +6572,10 @@ client.flows.log(
65726572
output="The patient is likely experiencing a myocardial infarction. Immediate medical attention is required.",
65736573
trace_status="incomplete",
65746574
start_time=datetime.datetime.fromisoformat(
6575-
"2024-07-08 21:40:35+00:00",
6575+
"2024-07-08 22:40:35+00:00",
65766576
),
65776577
end_time=datetime.datetime.fromisoformat(
6578-
"2024-07-08 21:40:39+00:00",
6578+
"2024-07-08 22:40:39+00:00",
65796579
),
65806580
)
65816581

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.22",
19+
"X-Fern-SDK-Version": "0.8.22b1",
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 21:40:35+00:00",
205+
"2024-07-08 22:40:35+00:00",
206206
),
207207
end_time=datetime.datetime.fromisoformat(
208-
"2024-07-08 21:40:39+00:00",
208+
"2024-07-08 22:40:39+00:00",
209209
),
210210
)
211211
"""
@@ -1450,10 +1450,10 @@ async def main() -> None:
14501450
output="The patient is likely experiencing a myocardial infarction. Immediate medical attention is required.",
14511451
trace_status="incomplete",
14521452
start_time=datetime.datetime.fromisoformat(
1453-
"2024-07-08 21:40:35+00:00",
1453+
"2024-07-08 22:40:35+00:00",
14541454
),
14551455
end_time=datetime.datetime.fromisoformat(
1456-
"2024-07-08 21:40:39+00:00",
1456+
"2024-07-08 22:40:39+00:00",
14571457
),
14581458
)
14591459

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-18 23:29:35.178000+00:00",
239+
"2024-07-19 00:29:35.178000+00:00",
240240
),
241241
provider_latency=6.5931549072265625,
242242
output_message={
@@ -2148,7 +2148,7 @@ async def main() -> None:
21482148
],
21492149
inputs={"person": "Trump"},
21502150
created_at=datetime.datetime.fromisoformat(
2151-
"2024-07-18 23:29:35.178000+00:00",
2151+
"2024-07-19 00:29:35.178000+00:00",
21522152
),
21532153
provider_latency=6.5931549072265625,
21542154
output_message={

0 commit comments

Comments
 (0)