Skip to content

Commit ea43de1

Browse files
committed
Release 0.8.3
1 parent 7ba8c5a commit ea43de1

File tree

65 files changed

+3272
-1937
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+3272
-1937
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Humanloop Python Library
22

3-
[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-SDK%20generated%20by%20Fern-brightgreen)](https://github.com/fern-api/fern)
3+
[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fhumanloop%2Fhumanloop-python)
44
[![pypi](https://img.shields.io/pypi/v/humanloop)](https://pypi.python.org/pypi/humanloop)
55

66
The Humanloop Python library provides convenient access to the Humanloop API from Python.
@@ -11,6 +11,10 @@ The Humanloop Python library provides convenient access to the Humanloop API fro
1111
pip install humanloop
1212
```
1313

14+
## Reference
15+
16+
A full reference for this library is available [here](./reference.md).
17+
1418
## Usage
1519

1620
Instantiate and use the client with the following:
@@ -238,7 +242,7 @@ A request is deemed retriable when any of the following HTTP status codes is ret
238242
Use the `max_retries` request option to configure this behavior.
239243

240244
```python
241-
client.prompts.log(..., {
245+
client.prompts.log(..., request_options={
242246
"max_retries": 1
243247
})
244248
```
@@ -258,7 +262,7 @@ client = Humanloop(
258262

259263

260264
# Override timeout for a specific method
261-
client.prompts.log(..., {
265+
client.prompts.log(..., request_options={
262266
"timeout_in_seconds": 1
263267
})
264268
```

poetry.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

0 commit comments

Comments
 (0)