Metadata-Version: 2.4
Name: openrun
Version: 0.0.3
Summary: A flexible, LLM-agnostic engine for orchestrating AI agents and complex conversational automation behind the firewall.
Project-URL: Repository, https://github.com/exacog/openrun
Project-URL: Issues, https://github.com/exacog/openrun/issues
Author-email: David Hariri <david@ada.cx>
License: Copyright © 2025, Ada Support Inc.
        
        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:
        
        1. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
        2. No licensee or downstream recipient may use the Software (including any modified or derivative versions) to directly compete with the original Licensor by offering it to third parties as a hosted, managed, or Software-as-a-Service (SaaS) product or cloud service where the primary value of the service is the functionality of the Software itself.
        
        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
Keywords: agents,ai,automation,llm,orchestration
Requires-Python: >=3.12
Description-Content-Type: text/markdown

# OpenRun

A flexible, LLM-agnostic engine for orchestrating AI agents and complex conversational automation behind the firewall.

## Development

This project uses [uv](https://docs.astral.sh/uv/) for dependency management.

### Prerequisites

Install uv if you haven't already:

```bash
curl -LsSf https://astral.sh/uv/install.sh | sh
```

### Setup

Clone the repository and install dependencies:

```bash
git clone https://github.com/exacog/openrun.git
cd openrun
uv sync
```

This will create a virtual environment and install all dependencies (including dev dependencies).

### Running Tests

```bash
uv run pytest
```

### Linting & Formatting

Check for linting issues:

```bash
uv run ruff check .
```

Auto-fix linting issues:

```bash
uv run ruff check . --fix
```

Format code:

```bash
uv run ruff format .
```

### Building

```bash
uv build
```

This will create distribution files in the `dist/` directory.
