Metadata-Version: 2.4
Name: alephantai-saas-api
Version: 0.1.0
Summary: Python SDK for the Alephant SaaS HTTP API (Fern-generated from OpenAPI).
Author: Alephant AI
License: MIT
Project-URL: Homepage, https://github.com/alephantai
Project-URL: Documentation, https://alephant-ai-007131.docs.buildwithfern.com
Keywords: alephant,saas,api,sdk,llm
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Typing :: Typed
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: httpx>=0.23.0
Requires-Dist: pydantic>=1.9.2
Requires-Dist: typing_extensions>=4.0.0

# alephantai-saas-api

Python client for the **Alephant SaaS** HTTP API. Generated with [Fern](https://buildwithfern.com/) from OpenAPI.

## Install

```bash
pip install alephantai-saas-api
```

## Usage

```python
from alephantai_saas import AlephantAi007131Api, AlephantAi007131ApiEnvironment

client = AlephantAi007131Api(
    environment=AlephantAi007131ApiEnvironment.DEFAULT,
    # token="Bearer <your-token>",
)
# client.workspaces.list_workspaces(...)
```

Async client:

```python
from alephantai_saas import AsyncAlephantAi007131Api, AlephantAi007131ApiEnvironment

async_client = AsyncAlephantAi007131Api(environment=AlephantAi007131ApiEnvironment.DEFAULT)
```

Replace the default environment URL with your deployment base URL as needed.

## Regenerating

From `backend-saas-service/fern`:

```bash
npx fern-api@latest generate --group python-sdk --api api
```

After Fern adds new API groups, update the `packages` list in `pyproject.toml` if new top-level folders appear.

## License

MIT
