Skip to content

Commit 271d3cf

Browse files
committed
Release 0.8.6b2
1 parent 2a7f385 commit 271d3cf

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ client.prompts.log(
4141
messages=[{"role": "user", "content": "What really happened at Roswell?"}],
4242
inputs={"person": "Trump"},
4343
created_at=datetime.datetime.fromisoformat(
44-
"2024-07-18 23:29:35.178000+00:00",
44+
"2024-07-19 00:29:35.178000+00:00",
4545
),
4646
provider_latency=6.5931549072265625,
4747
output_message={
@@ -88,7 +88,7 @@ async def main() -> None:
8888
],
8989
inputs={"person": "Trump"},
9090
created_at=datetime.datetime.fromisoformat(
91-
"2024-07-18 23:29:35.178000+00:00",
91+
"2024-07-19 00:29:35.178000+00:00",
9292
),
9393
provider_latency=6.5931549072265625,
9494
output_message={

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.6b1"
3+
version = "0.8.6b2"
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={
@@ -6258,10 +6258,10 @@ client.flows.log(
62586258
output="The patient is likely experiencing a myocardial infarction. Immediate medical attention is required.",
62596259
trace_status="incomplete",
62606260
start_time=datetime.datetime.fromisoformat(
6261-
"2024-07-08 21:40:35+00:00",
6261+
"2024-07-08 22:40:35+00:00",
62626262
),
62636263
end_time=datetime.datetime.fromisoformat(
6264-
"2024-07-08 21:40:39+00:00",
6264+
"2024-07-08 22:40:39+00:00",
62656265
),
62666266
)
62676267

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.6b1",
19+
"X-Fern-SDK-Version": "0.8.6b2",
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
@@ -197,10 +197,10 @@ def log(
197197
output="The patient is likely experiencing a myocardial infarction. Immediate medical attention is required.",
198198
trace_status="incomplete",
199199
start_time=datetime.datetime.fromisoformat(
200-
"2024-07-08 21:40:35+00:00",
200+
"2024-07-08 22:40:35+00:00",
201201
),
202202
end_time=datetime.datetime.fromisoformat(
203-
"2024-07-08 21:40:39+00:00",
203+
"2024-07-08 22:40:39+00:00",
204204
),
205205
)
206206
"""
@@ -1366,10 +1366,10 @@ async def main() -> None:
13661366
output="The patient is likely experiencing a myocardial infarction. Immediate medical attention is required.",
13671367
trace_status="incomplete",
13681368
start_time=datetime.datetime.fromisoformat(
1369-
"2024-07-08 21:40:35+00:00",
1369+
"2024-07-08 22:40:35+00:00",
13701370
),
13711371
end_time=datetime.datetime.fromisoformat(
1372-
"2024-07-08 21:40:39+00:00",
1372+
"2024-07-08 22:40:39+00:00",
13731373
),
13741374
)
13751375

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={
@@ -2117,7 +2117,7 @@ async def main() -> None:
21172117
],
21182118
inputs={"person": "Trump"},
21192119
created_at=datetime.datetime.fromisoformat(
2120-
"2024-07-18 23:29:35.178000+00:00",
2120+
"2024-07-19 00:29:35.178000+00:00",
21212121
),
21222122
provider_latency=6.5931549072265625,
21232123
output_message={

0 commit comments

Comments
 (0)