Metadata-Version: 2.4
Name: thaillm-py
Version: 0.1.1
Summary: Python SDK for ThaiLLM API
Author: HakusaiTH
License: MIT
Project-URL: Homepage, https://github.com/HakusaiTH/thaillm-py
Project-URL: Issues, https://github.com/HakusaiTH/thaillm-py/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.31.0

# thaillm

Python SDK for ThaiLLM API

## Installation

```bash
pip install thaillm
```

## Usage

```python
from thaillm import ThaiLLM

client = ThaiLLM(
    api_key="YOUR_API_KEY"
)

reply = client.chat("สวัสดี")

print(reply)
```
