Metadata-Version: 2.4
Name: aviora
Version: 0.1.0
Summary: AI search framework powered by Tavily
Author: Your Name
License: MIT
Keywords: ai,search,tavily,agents
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: tavily-python>=0.7.0
Dynamic: license-file

# Aviora

AI Search Framework powered by Tavily.

## Install

```bash
pip install aviora
```

## Example

```python
from aviora import Aviora

client = Aviora(
    api_key="tvly-xxxx"
)

results = client.search(
    "Latest AI news"
)

print(results)
```
