Skip to content

Commit

Permalink
Release 0.8.6b3
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Oct 13, 2024
1 parent 12d3666 commit 0ca96f9
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ client.prompts.log(
messages=[{"role": "user", "content": "What really happened at Roswell?"}],
inputs={"person": "Trump"},
created_at=datetime.datetime.fromisoformat(
"2024-07-18 23:29:35.178000+00:00",
"2024-07-19 00:29:35.178000+00:00",
),
provider_latency=6.5931549072265625,
output_message={
Expand Down Expand Up @@ -88,7 +88,7 @@ async def main() -> None:
],
inputs={"person": "Trump"},
created_at=datetime.datetime.fromisoformat(
"2024-07-18 23:29:35.178000+00:00",
"2024-07-19 00:29:35.178000+00:00",
),
provider_latency=6.5931549072265625,
output_message={
Expand Down
8 changes: 4 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "humanloop"
version = "0.8.6b2"
version = "0.8.6b3"
description = ""
readme = "README.md"
authors = []
Expand Down
6 changes: 3 additions & 3 deletions reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ client.prompts.log(
messages=[{"role": "user", "content": "What really happened at Roswell?"}],
inputs={"person": "Trump"},
created_at=datetime.datetime.fromisoformat(
"2024-07-18 23:29:35.178000+00:00",
"2024-07-19 00:29:35.178000+00:00",
),
provider_latency=6.5931549072265625,
output_message={
Expand Down Expand Up @@ -6258,10 +6258,10 @@ client.flows.log(
output="The patient is likely experiencing a myocardial infarction. Immediate medical attention is required.",
trace_status="incomplete",
start_time=datetime.datetime.fromisoformat(
"2024-07-08 21:40:35+00:00",
"2024-07-08 22:40:35+00:00",
),
end_time=datetime.datetime.fromisoformat(
"2024-07-08 21:40:39+00:00",
"2024-07-08 22:40:39+00:00",
),
)

Expand Down
2 changes: 1 addition & 1 deletion src/humanloop/core/client_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def get_headers(self) -> typing.Dict[str, str]:
headers: typing.Dict[str, str] = {
"X-Fern-Language": "Python",
"X-Fern-SDK-Name": "humanloop",
"X-Fern-SDK-Version": "0.8.6b2",
"X-Fern-SDK-Version": "0.8.6b3",
}
headers["X-API-KEY"] = self.api_key
return headers
Expand Down
8 changes: 4 additions & 4 deletions src/humanloop/flows/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,10 @@ def log(
output="The patient is likely experiencing a myocardial infarction. Immediate medical attention is required.",
trace_status="incomplete",
start_time=datetime.datetime.fromisoformat(
"2024-07-08 21:40:35+00:00",
"2024-07-08 22:40:35+00:00",
),
end_time=datetime.datetime.fromisoformat(
"2024-07-08 21:40:39+00:00",
"2024-07-08 22:40:39+00:00",
),
)
"""
Expand Down Expand Up @@ -1366,10 +1366,10 @@ async def main() -> None:
output="The patient is likely experiencing a myocardial infarction. Immediate medical attention is required.",
trace_status="incomplete",
start_time=datetime.datetime.fromisoformat(
"2024-07-08 21:40:35+00:00",
"2024-07-08 22:40:35+00:00",
),
end_time=datetime.datetime.fromisoformat(
"2024-07-08 21:40:39+00:00",
"2024-07-08 22:40:39+00:00",
),
)
Expand Down
4 changes: 2 additions & 2 deletions src/humanloop/prompts/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def log(
messages=[{"role": "user", "content": "What really happened at Roswell?"}],
inputs={"person": "Trump"},
created_at=datetime.datetime.fromisoformat(
"2024-07-18 23:29:35.178000+00:00",
"2024-07-19 00:29:35.178000+00:00",
),
provider_latency=6.5931549072265625,
output_message={
Expand Down Expand Up @@ -2117,7 +2117,7 @@ async def main() -> None:
],
inputs={"person": "Trump"},
created_at=datetime.datetime.fromisoformat(
"2024-07-18 23:29:35.178000+00:00",
"2024-07-19 00:29:35.178000+00:00",
),
provider_latency=6.5931549072265625,
output_message={
Expand Down

0 comments on commit 0ca96f9

Please sign in to comment.