Metadata-Version: 2.4
Name: pharia-studio-sdk
Version: 0.1.1
Project-URL: repository, https://github.com/Aleph-Alpha/pharia-studio-sdk.git
Author-email: Max Hammer <max.hammer@aleph-alpha.com>
License-File: LICENSE
License-File: NOTICE.md
Requires-Python: <3.13,>=3.12
Requires-Dist: aleph-alpha-client<11.0.0,>=10.2.2
Requires-Dist: argilla>=2.8.0
Requires-Dist: datasets>=3.6.0
Requires-Dist: dict-hash>=1.3.6
Requires-Dist: huggingface-hub>=0.32.6
Requires-Dist: pharia-inference-sdk>=0.1.0
Requires-Dist: pydantic>=2.11.5
Requires-Dist: rouge-score>=0.1.2
Requires-Dist: sacrebleu>=2.5.1
Description-Content-Type: text/markdown

# pharia-studio-sdk

Formally the `intelligence_layer/evaluation` package.

## Overview

The pharia-studio-sdk provides a set of tools for evaluating and benchmarking LLMs with the Studio applications.

## Installation
The SDK is published on [PyPI](#).

To add the SDK as a dependency to an existing project managed, run
```bash
pip install pharia-studio-sdk
```

## Usage

```python
from pharia_studio_sdk.connectors.studio.studio_client import StudioClient

studio_client = StudioClient(PROJECT_NAME,studio_url=STUDIO_URL, auth_token=AA_TOKEN, create_project=True )
```






evaluator = Evaluator(
    model_name="gpt-4o-mini",
    model_provider="openai",
)

```


## Contributing

We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) for details on how to set up the development environment and submit changes.
