Metadata-Version: 2.5
Name: korals
Version: 0.0.1a1
Summary: Official Python SDK and CLI for the Korals platform — AI workspaces with domain tools. Under active development.
Project-URL: Homepage, https://korals.ai
Author-email: Korals <hello@korals.ai>
License: Proprietary
Keywords: agent,ai,korals,sdk,workspace
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.11
Description-Content-Type: text/markdown

# korals

The official Python SDK and CLI for the [Korals](https://korals.ai)
platform: provision an AI workspace (a *koral*) with the domain tools your
work needs — CAD, OCR, office documents, rendering and more — upload your
files, and put an agent to work on them, all from code.

```python
# The API this package is converging on (under active development):
from korals import Korals

k = Korals.get_workspace(tools=["cad"])
k.upload_file("site-plan.dwg")
k.chat("Extract the camera positions from this drawing")
print(k.get_cost())
```

**Status: pre-alpha.** This release reserves the package name while the SDK
is finalised; the API above is not functional yet. Watch
[korals.ai](https://korals.ai) for the launch.
