Metadata-Version: 2.4
Name: alephantai-saas-api
Version: 0.1.1
Summary: Python SDK for the Alephant SaaS HTTP API (Fern-generated from OpenAPI).
Author: Alephant AI
License-Expression: MIT
Project-URL: Homepage, https://github.com/alephantai
Project-URL: Documentation, https://alephant-ai-318537.docs.buildwithfern.com
Keywords: alephant,saas,api,sdk,llm
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
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 AlephantAi318537Api

client = AlephantAi318537Api(
    api_key="<your-token>",
    base_url="https://yourhost.com/path/to/api",
)
# client.workspaces.list_workspaces(...)
```

Async client:

```python
from alephantai_saas import AsyncAlephantAi318537Api

async_client = AsyncAlephantAi318537Api(
    api_key="<your-token>",
    base_url="https://yourhost.com/path/to/api",
)
```

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

## Regenerating

From `backend-saas-service`:

```bash
npx --yes fern-api@latest generate --group python-sdk --no-prompt --force
```

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

## License

MIT
