Metadata-Version: 2.4
Name: eai_answers_lib
Version: 0.1.0
Summary: Library to interact with Expert AI Answers engine
Author: Simone Martin
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: loguru>=0.7.3
Requires-Dist: pydantic>=2.13.3
Requires-Dist: requests>=2.33.1
Provides-Extra: dev
Requires-Dist: ruff>=0.9.0; extra == "dev"
Requires-Dist: pytest>=8.0.0; extra == "dev"
Requires-Dist: responses>=0.25.0; extra == "dev"

# Answers Lib

Library to interact with Expert AI Answers engine.

## Installation

```bash
pip install eai-answers-lib
```

## Usage

```python
from eai_answers_lib import Answers

a = Answers()
result = a.get_answers(query="Your question")
```

## Authentication

```python
a = Answers(
    enable_auth=True,
    client_id="your-client-id",
    client_secret="your-client-secret"
)
```

## Environment Variables

- `ANSWERS_ENDPOINT` - API endpoint URL
- `ANSWERS_CLIENT_ID` - Client ID for authentication
- `ANSWERS_CLIENT_SECRET` - Client secret for authentication
