Metadata-Version: 2.4
Name: bos-ai
Version: 1.9.0
Summary: Lightweight, extensible framework for building and running multi-agent systems
Project-URL: Homepage, https://github.com/bos-agent/bos-ai
License: MIT License
        
        Copyright (c) 2024-2026, bos-ai contributors
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Requires-Python: >=3.13
Requires-Dist: aiohttp==3.13.5
Requires-Dist: beautifulsoup4==4.14.3
Requires-Dist: click==8.3.2
Requires-Dist: ddgs==9.14.4
Requires-Dist: filelock==3.25.2
Requires-Dist: jsonschema>=4.21
Requires-Dist: litellm==1.84.0
Requires-Dist: prompt-toolkit==3.0.52
Requires-Dist: pydantic==2.12.5
Requires-Dist: python-dotenv==1.2.2
Requires-Dist: pyyaml==6.0.3
Requires-Dist: rich==14.3.3
Requires-Dist: textual-autocomplete==4.0.6
Requires-Dist: textual==8.2.3
Requires-Dist: tomli==2.0.1; python_version < '3.11'
Requires-Dist: tomlkit==0.15.0
Provides-Extra: all
Requires-Dist: lark-oapi==1.6.8; extra == 'all'
Requires-Dist: tavily-python==0.7.23; extra == 'all'
Provides-Extra: lark
Requires-Dist: lark-oapi==1.6.8; extra == 'lark'
Provides-Extra: search
Requires-Dist: tavily-python==0.7.23; extra == 'search'
Description-Content-Type: text/markdown

```
 ███████████     ███████     █████████
░░███░░░░░███  ███░░░░░███  ███░░░░░███
 ░███    ░███ ███     ░░███░███    ░░░
 ░██████████ ░███      ░███░░█████████
 ░███░░░░░███░███      ░███ ░░░░░░░░███
 ░███    ░███░░███     ███  ███    ░███
 ███████████  ░░░███████░  ░░█████████
░░░░░░░░░░░     ░░░░░░░     ░░░░░░░░░
```

> From zero to agent in a single command.

<div align="center">
  <p>
    <a href="https://pypi.org/project/bos-ai/"><img src="https://img.shields.io/pypi/v/bos-ai" alt="PyPI"></a>
    <a href="https://pepy.tech/project/bos-ai"><img src="https://static.pepy.tech/badge/bos-ai" alt="Downloads"></a>
    <img src="https://img.shields.io/badge/python-≥3.13-blue" alt="Python">
    <img src="https://img.shields.io/badge/license-MIT-green" alt="License">
    <a href="https://github.com/bos-agent/bos-ai"><img src="https://img.shields.io/github/stars/bos-agent/bos-ai?style=social" alt="GitHub Stars"></a>
  </p>
</div>


## Quick Start

```bash
pip install bos-ai
OPENAI_API_KEY=<api-key> boscli ask "how are you" --model openai/gpt-4o
```

Using a different provider? See LiteLLM's [provider docs](https://docs.litellm.ai/docs/providers) for the right `BOS_MODEL` prefix and required environment variables. For example, using deepseek model

```
DEEPSEEK_API_KEY=<api-key> boscli ask "how are you" --model odeepseek/deepseek-v4-pro
```

Alternatively, it could use `uvx` to start:

```bash
OPENAI_API_KEY=<api-key> uvx boscli ask "how are you" --model openai/gpt-4o
```
Install [uv](https://docs.astral.sh/uv/) to get the `uvx`.

## Project Setup

```bash
mkdir my-agent && cd my-agent
boscli init          # guided setup: purpose, topology, model — writes a runnable baseline
boscli gateway start # start the agent runtime
boscli tui           # connect the terminal UI
```

## Docs

See the [documentation site](https://bos-agent.github.io/bos-ai/) for tutorials, architecture, extension points, and the configuration reference.

Building on BOS with an AI agent? [`docs/llms-full.md`](docs/llms-full.md) is a single dense, code-grounded reference covering every mechanism — configuration, extension points, plugins, channels, skills, the CLI, and the runtime — in one file.

## License

See [LICENSE](LICENSE).
