Metadata-Version: 2.1
Name: ascenderai
Version: 0.1.1
Summary: Python SDK library for interacting with AscenderAI clusters
Author: AscenderTeam
Author-email: info@ascender.space
Requires-Python: >=3.11,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: aiohttp (==3.9.3)
Requires-Dist: langchain (>=0.1.7,<0.2.0)
Requires-Dist: langchain-community (>=0.0.20,<0.0.21)
Requires-Dist: rich (>=13.7.0,<14.0.0)
Description-Content-Type: text/markdown

# AscenderAI SDK
⚡ Commuting with AscenderAI cluster in python with 1 lib ⚡

## Installation
```bash
# For windows
pip install ascenderai
# For linux or mac os
pip3 install ascenderai
```

## Usage
```python
import asyncio
from ascenderai import AscenderAI

client = AscenderAI()

async def main():
    response = await client.completions.create(
        prompt="Explain me about LLMs",
        max_tokens=5
    )
    print(response.choices[0].text)

asyncio.run(main())
```

## Documentation
- [Ascender Team](https://ascender.space/)
- [API Documentation](https://ascenderai.github.io/ascender-cluster-python-sdk/)
- [AscenderAI API](https://ai.ascender.space/docs/api/)
