Metadata-Version: 2.4
Name: traceotter
Version: 0.2.0
Summary: Agent observability Python SDK for Traceotter
Author: Nikhil Garakapati
License: MIT
Project-URL: Homepage, https://github.com/29m10/traceotter-python-sdk
Project-URL: Repository, https://github.com/29m10/traceotter-python-sdk
Keywords: traceotter,observability,agents,llm,sdk
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx<1.0,>=0.24
Requires-Dist: pydantic<3.0,>=1.10
Requires-Dist: grpcio<2.0,>=1.60
Requires-Dist: protobuf<6.0,>=4.21
Dynamic: license-file

# Traceotter Python Library

[![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=Traceotter%2FPython)
[![pypi](https://img.shields.io/pypi/v/traceotter)](https://pypi.python.org/pypi/traceotter)

The Traceotter Python library provides convenient access to the Traceotter APIs from Python.

## Installation

```sh
pip install traceotter
```

## Usage

Instantiate and use the client with the following:

```python
from traceotter import CreateAnnotationQueueRequest
from traceotter.client import FernTraceotter

client = FernTraceotter(
    x_traceotter_sdk_name="YOUR_X_TRACEOTTER_SDK_NAME",
    x_traceotter_sdk_version="YOUR_X_TRACEOTTER_SDK_VERSION",
    x_traceotter_public_key="YOUR_X_TRACEOTTER_PUBLIC_KEY",
    username="YOUR_USERNAME",
    password="YOUR_PASSWORD",
    base_url="https://yourhost.com/path/to/api",
)
client.annotation_queues.create_queue(
    request=CreateAnnotationQueueRequest(
        name="name",
        score_config_ids=["scoreConfigIds", "scoreConfigIds"],
    ),
)
```

## Async Client

The SDK also exports an `async` client so that you can make non-blocking calls to our API.

```python
import asyncio

from traceotter import CreateAnnotationQueueRequest
from traceotter.client import AsyncFernTraceotter

client = AsyncFernTraceotter(
    x_traceotter_sdk_name="YOUR_X_TRACEOTTER_SDK_NAME",
    x_traceotter_sdk_version="YOUR_X_TRACEOTTER_SDK_VERSION",
    x_traceotter_public_key="YOUR_X_TRACEOTTER_PUBLIC_KEY",
    username="YOUR_USERNAME",
    password="YOUR_PASSWORD",
    base_url="https://yourhost.com/path/to/api",
)


async def main() -> None:
    await client.annotation_queues.create_queue(
        request=CreateAnnotationQueueRequest(
            name="name",
            score_config_ids=["scoreConfigIds", "scoreConfigIds"],
        ),
    )


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.annotation_queues.create_queue(...)
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.annotation_queues.create_queue(...,{
    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 traceotter.client import FernTraceotter

client = FernTraceotter(..., { timeout=20.0 }, )


# Override timeout for a specific method
client.annotation_queues.create_queue(...,{
    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 traceotter.client import FernTraceotter

client = FernTraceotter(
    ...,
    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!
