Metadata-Version: 2.4
Name: yua-one
Version: 1.0.0
Summary: YUA ONE — Official Python SDK
Author-email: YUA ONE <jungwon@yuaone.com>
License: MIT
Project-URL: Homepage, https://yuaone.com
Project-URL: Source, https://github.com/yuaone/sdk-python
Keywords: yua,yua-one,sdk,ai,llm,api
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.31.0
Requires-Dist: sseclient-py>=1.7

# 📘 YUA ONE — Official Python SDK  
Enterprise Multi-Engine AI Platform SDK  
(Chat / Stream / Spine / Multi-Engine Routing)

---

## 🚀 Install

```bash
pip install yua-one
```

---

## 🧠 Quick Start

```python
from yuaone import YUAClient

client = YUAClient(api_key="YOUR_API_KEY", base="http://localhost:4000")

res = client.chat.send("Hello YUA ONE!")
print(res)
```

---

## 🔥 Streaming Example (SSE)

```python
from yuaone import YUAClient

client = YUAClient()

for chunk in client.chat.stream("Hello YUA!"):
    print("STREAM:", chunk)
```

---

## 🔷 Spine Engine Stream  
Gen59 → HPE → Quantum → SUV

```python
from yuaone import YUAClient

client = YUAClient()

for chunk in client.spine.stream("Run YUA SPINE"):
    print("SPINE:", chunk)
```

---

## 📦 Package Structure

```
yuaone/
  ├── __init__.py
  ├── client.py
  ├── chat.py
  └── spine.py
```

---

## 🛠 Requirements

- Python 3.8+
- requests
- sseclient-py

---

## 🏗 Author

**YUA ONE Team**  
jungwon@yuaone.com  
https://yuaone.com

---

## 📄 License

MIT License

