Skip to content

Commit f49bd7d

Browse files
committed
Release 0.8.2b1
1 parent c145b90 commit f49bd7d

27 files changed

+740
-147
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: poetry install
3535

3636
- name: Test
37-
run: poetry run pytest ./tests/custom/
37+
run: poetry run pytest -rP .
3838

3939
publish:
4040
needs: [compile, test]

README.md

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -144,10 +144,7 @@ response = client.prompts.call_stream(
144144
{
145145
"id": "string",
146146
"type": "function",
147-
"function": {
148-
"name": "string",
149-
"arguments": {"key": "value"},
150-
},
147+
"function": {"name": "string"},
151148
}
152149
],
153150
}
@@ -165,18 +162,8 @@ response = client.prompts.call_stream(
165162
"frequency_penalty": 1.1,
166163
"other": {"string": {"key": "value"}},
167164
"seed": 1,
168-
"response_format": {
169-
"type": "json_object",
170-
"json_schema": {"string": {"key": "value"}},
171-
},
172-
"tools": [
173-
{
174-
"name": "string",
175-
"description": "string",
176-
"strict": {"key": "value"},
177-
"parameters": {"key": "value"},
178-
}
179-
],
165+
"response_format": {"type": "json_object", "json_schema": {}},
166+
"tools": [{"name": "string", "description": "string"}],
180167
"linked_tools": ["string"],
181168
"attributes": {"string": {"key": "value"}},
182169
},
@@ -191,7 +178,7 @@ response = client.prompts.call_stream(
191178
),
192179
source_datapoint_id="string",
193180
trace_parent_id="string",
194-
batches=["string"],
181+
batch_id="string",
195182
user="string",
196183
prompts_call_stream_request_environment="string",
197184
save=True,

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "humanloop"
3-
version = "0.8.1"
3+
version = "0.8.2b1"
44
description = ""
55
readme = "README.md"
66
authors = []
@@ -28,7 +28,7 @@ packages = [
2828
]
2929

3030
[project.urls]
31-
Repository = 'https://github.com/humanloop/humanloop-python-beta'
31+
Repository = 'https://github.com/humanloop/humanloop-python'
3232

3333
[tool.poetry.dependencies]
3434
python = "^3.8"

0 commit comments

Comments
 (0)