Metadata-Version: 2.4
Name: epist
Version: 0.1.0
Summary: Official Python SDK for Epist.ai
Project-URL: Homepage, https://epist.ai
Project-URL: Repository, https://github.com/epist-ai/epist-sdk-python
Author-email: Epist Team <support@epist.ai>
Requires-Python: >=3.8
Requires-Dist: httpx>=0.24.0
Description-Content-Type: text/markdown

# epist

Official Python SDK for the Epist.ai Audio RAG Platform.

## Installation

```bash
pip install epist
```

## Usage

```python
from epist import Epist

client = Epist(api_key="YOUR_API_KEY")

# 1. Upload File
status = client.upload_file("meeting_recording.mp3")
print(f"Task Started: {status['id']}")

# 2. Transcribe URL
task = client.transcribe_url("https://example.com/podcast.mp3")

# 3. Search
results = client.search("quarterly earnings")
for result in results:
    print(f"[{result['score']}] {result['text']}")
```
