Skip to content

Commit 7ba8c5a

Browse files
committed
Release 0.8.2
1 parent f49bd7d commit 7ba8c5a

File tree

9 files changed

+22
-22
lines changed

9 files changed

+22
-22
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.2b1"
3+
version = "0.8.2"
44
description = ""
55
readme = "README.md"
66
authors = []

reference.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ Controls how the model uses tools. The following options are supported:
314314
<dl>
315315
<dd>
316316

317-
**batch_id:** `typing.Optional[str]` — Unique identifier for the Batch to add this Batch to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
317+
**batch_id:** `typing.Optional[str]` — Unique identifier for the Batch to add this Log to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
318318

319319
</dd>
320320
</dl>
@@ -853,7 +853,7 @@ Controls how the model uses tools. The following options are supported:
853853
<dl>
854854
<dd>
855855

856-
**batch_id:** `typing.Optional[str]` — Unique identifier for the Batch to add this Batch to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
856+
**batch_id:** `typing.Optional[str]` — Unique identifier for the Batch to add this Log to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
857857

858858
</dd>
859859
</dl>
@@ -1119,7 +1119,7 @@ Controls how the model uses tools. The following options are supported:
11191119
<dl>
11201120
<dd>
11211121

1122-
**batch_id:** `typing.Optional[str]` — Unique identifier for the Batch to add this Batch to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
1122+
**batch_id:** `typing.Optional[str]` — Unique identifier for the Batch to add this Log to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
11231123

11241124
</dd>
11251125
</dl>
@@ -2535,7 +2535,7 @@ client.tools.log(
25352535
<dl>
25362536
<dd>
25372537

2538-
**batch_id:** `typing.Optional[str]` — Unique identifier for the Batch to add this Batch to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
2538+
**batch_id:** `typing.Optional[str]` — Unique identifier for the Batch to add this Log to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
25392539

25402540
</dd>
25412541
</dl>
@@ -6147,7 +6147,7 @@ client.evaluators.log(
61476147
<dl>
61486148
<dd>
61496149

6150-
**batch_id:** `typing.Optional[str]` — Unique identifier for the Batch to add this Batch to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
6150+
**batch_id:** `typing.Optional[str]` — Unique identifier for the Batch to add this Log to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
61516151

61526152
</dd>
61536153
</dl>
@@ -6872,7 +6872,7 @@ client.flows.log()
68726872
<dl>
68736873
<dd>
68746874

6875-
**batch_id:** `typing.Optional[str]` — Unique identifier for the Batch to add this Batch to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
6875+
**batch_id:** `typing.Optional[str]` — Unique identifier for the Batch to add this Log to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
68766876

68776877
</dd>
68786878
</dl>

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.2b1",
19+
"X-Fern-SDK-Version": "0.8.2",
2020
}
2121
headers["X-API-KEY"] = self.api_key
2222
return headers

src/humanloop/evaluators/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -964,7 +964,7 @@ def log(
964964
The ID of the parent Log to nest this Log under in a Trace.
965965
966966
batch_id : typing.Optional[str]
967-
Unique identifier for the Batch to add this Batch to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
967+
Unique identifier for the Batch to add this Log to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
968968
969969
user : typing.Optional[str]
970970
End-user ID related to the Log.
@@ -2077,7 +2077,7 @@ async def log(
20772077
The ID of the parent Log to nest this Log under in a Trace.
20782078
20792079
batch_id : typing.Optional[str]
2080-
Unique identifier for the Batch to add this Batch to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
2080+
Unique identifier for the Batch to add this Log to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
20812081
20822082
user : typing.Optional[str]
20832083
End-user ID related to the Log.

src/humanloop/flows/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ def log(
517517
The ID of the parent Log to nest this Log under in a Trace.
518518
519519
batch_id : typing.Optional[str]
520-
Unique identifier for the Batch to add this Batch to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
520+
Unique identifier for the Batch to add this Log to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
521521
522522
user : typing.Optional[str]
523523
End-user ID related to the Log.
@@ -1648,7 +1648,7 @@ async def log(
16481648
The ID of the parent Log to nest this Log under in a Trace.
16491649
16501650
batch_id : typing.Optional[str]
1651-
Unique identifier for the Batch to add this Batch to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
1651+
Unique identifier for the Batch to add this Log to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
16521652
16531653
user : typing.Optional[str]
16541654
End-user ID related to the Log.

src/humanloop/prompts/client.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ def log(
194194
The ID of the parent Log to nest this Log under in a Trace.
195195
196196
batch_id : typing.Optional[str]
197-
Unique identifier for the Batch to add this Batch to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
197+
Unique identifier for the Batch to add this Log to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
198198
199199
user : typing.Optional[str]
200200
End-user ID related to the Log.
@@ -595,7 +595,7 @@ def call_stream(
595595
The ID of the parent Log to nest this Log under in a Trace.
596596
597597
batch_id : typing.Optional[str]
598-
Unique identifier for the Batch to add this Batch to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
598+
Unique identifier for the Batch to add this Log to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
599599
600600
user : typing.Optional[str]
601601
End-user ID related to the Log.
@@ -871,7 +871,7 @@ def call(
871871
The ID of the parent Log to nest this Log under in a Trace.
872872
873873
batch_id : typing.Optional[str]
874-
Unique identifier for the Batch to add this Batch to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
874+
Unique identifier for the Batch to add this Log to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
875875
876876
user : typing.Optional[str]
877877
End-user ID related to the Log.
@@ -2071,7 +2071,7 @@ async def log(
20712071
The ID of the parent Log to nest this Log under in a Trace.
20722072
20732073
batch_id : typing.Optional[str]
2074-
Unique identifier for the Batch to add this Batch to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
2074+
Unique identifier for the Batch to add this Log to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
20752075
20762076
user : typing.Optional[str]
20772077
End-user ID related to the Log.
@@ -2489,7 +2489,7 @@ async def call_stream(
24892489
The ID of the parent Log to nest this Log under in a Trace.
24902490
24912491
batch_id : typing.Optional[str]
2492-
Unique identifier for the Batch to add this Batch to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
2492+
Unique identifier for the Batch to add this Log to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
24932493
24942494
user : typing.Optional[str]
24952495
End-user ID related to the Log.
@@ -2772,7 +2772,7 @@ async def call(
27722772
The ID of the parent Log to nest this Log under in a Trace.
27732773
27742774
batch_id : typing.Optional[str]
2775-
Unique identifier for the Batch to add this Batch to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
2775+
Unique identifier for the Batch to add this Log to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
27762776
27772777
user : typing.Optional[str]
27782778
End-user ID related to the Log.

src/humanloop/requests/prompt_call_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class PromptCallResponseParams(typing_extensions.TypedDict):
7272

7373
batch_id: typing_extensions.NotRequired[str]
7474
"""
75-
Unique identifier for the Batch to add this Batch to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
75+
Unique identifier for the Batch to add this Log to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
7676
"""
7777

7878
user: typing_extensions.NotRequired[str]

src/humanloop/tools/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def log(
137137
The ID of the parent Log to nest this Log under in a Trace.
138138
139139
batch_id : typing.Optional[str]
140-
Unique identifier for the Batch to add this Batch to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
140+
Unique identifier for the Batch to add this Log to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
141141
142142
user : typing.Optional[str]
143143
End-user ID related to the Log.
@@ -1327,7 +1327,7 @@ async def log(
13271327
The ID of the parent Log to nest this Log under in a Trace.
13281328
13291329
batch_id : typing.Optional[str]
1330-
Unique identifier for the Batch to add this Batch to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
1330+
Unique identifier for the Batch to add this Log to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
13311331
13321332
user : typing.Optional[str]
13331333
End-user ID related to the Log.

src/humanloop/types/prompt_call_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class PromptCallResponse(UncheckedBaseModel):
7373

7474
batch_id: typing.Optional[str] = pydantic.Field(default=None)
7575
"""
76-
Unique identifier for the Batch to add this Batch to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
76+
Unique identifier for the Batch to add this Log to. Batches are used to group Logs together for Evaluations. A Batch will be created if one with the given ID does not exist.
7777
"""
7878

7979
user: typing.Optional[str] = pydantic.Field(default=None)

0 commit comments

Comments
 (0)