Metadata-Version: 2.5
Name: kausable
Version: 0.1.0
Summary: Python SDK for the Kausable ML API
Project-URL: Homepage, https://kausable.ai
Project-URL: Repository, https://github.com/kausable/pypi-placeholders
Author-email: Kausable <devops@kausable.ai>
License-Expression: MIT
Classifier: Development Status :: 1 - Planning
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.10
Requires-Dist: httpx>=0.27
Description-Content-Type: text/markdown

# kausable

> **This package is a placeholder and is not yet operational.**
> The API surface below is a draft and will change without notice.
> Do not depend on this package in production.

Python SDK for the Kausable ML API.

## Usage (preview)

```python
from kausable import Kausable

client = Kausable(api_key="ks-...")

response = client.predict(
    model="my-model",
    inputs={"text": "hello world"},
)
print(response.outputs)
```

See [kausable.ai](https://kausable.ai) for more information.
