Metadata-Version: 2.4
Name: beeos
Version: 0.1.0
Summary: Official BeeOS Python package
Author-email: BeeOS <support@beeos.ai>
License-Expression: MIT
Project-URL: Documentation, https://docs.beeos.ai
Project-URL: Repository, https://github.com/beeos-ai/sdk-python
Keywords: BeeOS,agents,OpenAPI,SDK
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: beeos-sdk<1.0.0,>=0.4.0

# BeeOS for Python

`beeos` is the official Python entry point for BeeOS. It provides a stable,
convenient facade over the generated [`beeos-sdk`](https://pypi.org/project/beeos-sdk/)
Platform OpenAPI client.

## Install

```bash
python -m pip install beeos
```

## Usage

```python
import beeos

configuration = beeos.Configuration(
    host="https://openapi.beeos.ai",
    access_token="oag_your_api_key",
)

with beeos.ApiClient(configuration) as client:
    tasks = beeos.sdk.TasksApi(client)
    response = tasks.create_task(
        agent_id="agent-id",
        create_task_request=beeos.sdk.CreateTaskRequest(
            message="Open Settings",
        ),
    )
    print(response)
```

Use `beeos.sdk` when you need the complete generated API and model surface.
You can also install and import `beeos-sdk` / `beeos_sdk` directly.
