Metadata-Version: 2.1
Name: devicebay
Version: 0.1.21
Summary: Devices for AI agents
License: MIT
Author: Patrick Barker
Author-email: patrickbarkerco@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: playwright[browser] (>=1.43.0,<2.0.0)
Requires-Dist: sqlalchemy (>=2.0.29,<3.0.0)
Requires-Dist: toolfuse (>=0.1.22,<0.2.0)
Description-Content-Type: text/markdown

<br />
<p align="center">
  <!-- <a href="https://github.com/agentsea/skillpacks">
    <img src="https://project-logo.png" alt="Logo" width="80">
  </a> -->

  <h1 align="center">DeviceBay</h1>

  <p align="center">
    Devices for AI agents
    <br />
    <a href="https://github.com/agentsea/devicebay"><strong>Explore the docs »</strong></a>
    <br />
    <br />
    <a href="https://github.com/agentsea/devicebay">View Demo</a>
    ·
    <a href="https://github.com/agentsea/devicebay/issues">Report Bug</a>
    ·
    <a href="https://github.com/agentsea/devicebay/issues">Request Feature</a>
  </p>
  <br>
</p>

DeviceBay offers pluggable devices ready to be used by AI agents, complete with a UI experience.

## Installation

```sh
pip install devicebay
```

## Supported Devices

- Desktops via [AgentDesk](https://github.com/agentsea/agentdesk)
- Filesystems via [FileSystem](./devicebay/devices/filesystem.py)
- Browsers via [Playwright](./devicebay/devices/browser.py)

## Backends

Device configuration storage can be backed by:

- Sqlite
- Postgresql

Sqlite will be used by default. To use postgres simply configure the env vars:

```sh
DB_TYPE=postgres
DB_NAME=devices
DB_HOST=localhost
DB_USER=postgres
DB_PASS=abc123
```

