-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: prevent exceptions while parsing HTTP response error bodies (#911)
- Loading branch information
1 parent
29a9076
commit d62f606
Showing
123 changed files
with
7,865 additions
and
5,867 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
# This is the Ruff config used in CI. | ||
# In development, ruff.toml is used instead. | ||
|
||
target-version = 'py38' | ||
target-version = 'py38' | ||
[lint] | ||
exclude = ["langfuse/api/**/*.py"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,161 @@ | ||
# Finto Python Library | ||
|
||
[](https://github.com/fern-api/fern) | ||
[](https://pypi.python.org/pypi/finto) | ||
|
||
The Finto Python library provides convenient access to the Finto API from Python. | ||
|
||
## Installation | ||
|
||
```sh | ||
pip install finto | ||
``` | ||
|
||
## Usage | ||
|
||
Instantiate and use the client with the following: | ||
|
||
```python | ||
from finto import CreateDatasetItemRequest, DatasetStatus | ||
from finto.client import FernLangfuse | ||
|
||
client = FernLangfuse( | ||
x_langfuse_sdk_name="YOUR_X_LANGFUSE_SDK_NAME", | ||
x_langfuse_sdk_version="YOUR_X_LANGFUSE_SDK_VERSION", | ||
x_langfuse_public_key="YOUR_X_LANGFUSE_PUBLIC_KEY", | ||
username="YOUR_USERNAME", | ||
password="YOUR_PASSWORD", | ||
base_url="https://yourhost.com/path/to/api", | ||
) | ||
client.dataset_items.create( | ||
request=CreateDatasetItemRequest( | ||
dataset_name="string", | ||
input={"key": "value"}, | ||
expected_output={"key": "value"}, | ||
metadata={"key": "value"}, | ||
source_trace_id="string", | ||
source_observation_id="string", | ||
id="string", | ||
status=DatasetStatus.ACTIVE, | ||
), | ||
) | ||
``` | ||
|
||
## Async Client | ||
|
||
The SDK also exports an `async` client so that you can make non-blocking calls to our API. | ||
|
||
```python | ||
import asyncio | ||
|
||
from finto import CreateDatasetItemRequest, DatasetStatus | ||
from finto.client import AsyncFernLangfuse | ||
|
||
client = AsyncFernLangfuse( | ||
x_langfuse_sdk_name="YOUR_X_LANGFUSE_SDK_NAME", | ||
x_langfuse_sdk_version="YOUR_X_LANGFUSE_SDK_VERSION", | ||
x_langfuse_public_key="YOUR_X_LANGFUSE_PUBLIC_KEY", | ||
username="YOUR_USERNAME", | ||
password="YOUR_PASSWORD", | ||
base_url="https://yourhost.com/path/to/api", | ||
) | ||
|
||
|
||
async def main() -> None: | ||
await client.dataset_items.create( | ||
request=CreateDatasetItemRequest( | ||
dataset_name="string", | ||
input={"key": "value"}, | ||
expected_output={"key": "value"}, | ||
metadata={"key": "value"}, | ||
source_trace_id="string", | ||
source_observation_id="string", | ||
id="string", | ||
status=DatasetStatus.ACTIVE, | ||
), | ||
) | ||
|
||
|
||
asyncio.run(main()) | ||
``` | ||
|
||
## Exception Handling | ||
|
||
When the API returns a non-success status code (4xx or 5xx response), a subclass of the following error | ||
will be thrown. | ||
|
||
```python | ||
from .api_error import ApiError | ||
|
||
try: | ||
client.dataset_items.create(...) | ||
except ApiError as e: | ||
print(e.status_code) | ||
print(e.body) | ||
``` | ||
|
||
## Advanced | ||
|
||
### Retries | ||
|
||
The SDK is instrumented with automatic retries with exponential backoff. A request will be retried as long | ||
as the request is deemed retriable and the number of retry attempts has not grown larger than the configured | ||
retry limit (default: 2). | ||
|
||
A request is deemed retriable when any of the following HTTP status codes is returned: | ||
|
||
- [408](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/408) (Timeout) | ||
- [429](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429) (Too Many Requests) | ||
- [5XX](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/500) (Internal Server Errors) | ||
|
||
Use the `max_retries` request option to configure this behavior. | ||
|
||
```python | ||
client.dataset_items.create(...,{ | ||
max_retries=1 | ||
}) | ||
``` | ||
|
||
### Timeouts | ||
|
||
The SDK defaults to a 60 second timeout. You can configure this with a timeout option at the client or request level. | ||
|
||
```python | ||
|
||
from finto.client import FernLangfuse | ||
|
||
client = FernLangfuse(..., { timeout=20.0 }, ) | ||
|
||
|
||
# Override timeout for a specific method | ||
client.dataset_items.create(...,{ | ||
timeout_in_seconds=1 | ||
}) | ||
``` | ||
|
||
### Custom Client | ||
|
||
You can override the `httpx` client to customize it for your use-case. Some common use-cases include support for proxies | ||
and transports. | ||
```python | ||
import httpx | ||
from finto.client import FernLangfuse | ||
|
||
client = FernLangfuse( | ||
..., | ||
http_client=httpx.Client( | ||
proxies="http://my.test.proxy.example.com", | ||
transport=httpx.HTTPTransport(local_address="0.0.0.0"), | ||
), | ||
) | ||
``` | ||
|
||
## Contributing | ||
|
||
While we value open-source contributions to this SDK, this library is generated programmatically. | ||
Additions made directly to this library would have to be moved over to our generation code, | ||
otherwise they would be overwritten upon the next generated release. Feel free to open a PR as | ||
a proof of concept, but know that we will not be able to merge it as-is. We suggest opening | ||
an issue first to discuss with us! | ||
|
||
On the other hand, contributions to the README are always very welcome! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.