Metadata-Version: 2.4
Name: aviora
Version: 0.1.1
Summary: AI Search Framework powered by Tavily
Author: Syed Faisal
License: MIT
Project-URL: Homepage, https://github.com/yourusername/aviora
Keywords: ai,agents,search,tavily,llm
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)
```
