Metadata-Version: 2.4
Name: inspect_flow
Version: 0.0.1
Summary: Inspect Flow is a workflow stack built on Inspect AI that enables research organizations to run AI evaluations at scale
Project-URL: Source Code, https://github.com/meridianlabs-ai/inspect_flow
Project-URL: Issue Tracker, https://github.com/meridianlabs-ai/inspect_flow/issues
Author: Meridian Labs
License: MIT License
License-File: LICENSE
Requires-Python: >=3.10
Requires-Dist: click>=8.2.1
Requires-Dist: inspect-ai>=0.3.131
Requires-Dist: pydantic>=2.11.2
Requires-Dist: python-dotenv>=1.1.1
Requires-Dist: typing-extensions>=4.9.0
Description-Content-Type: text/markdown

Welcome to Inspect Flow. Inspect Flow is a workflow stack built on Inspect AI that enables research organizations to run AI evaluations at scale.

## Installation

Latest development version:

```bash
pip install git+https://github.com/meridianlabs-ai/inspect_flow
```

## Development

To work on development of Inspect Flow, clone the repository and install with the `-e` flag and `[dev]` optional dependencies:

```bash
git clone https://github.com/meridianlabs-ai/inspect_flow
cd inspect_flow
uv sync
```

Optionally install pre-commit hooks via

```bash
make hooks
```

Run linting, formatting, and tests via

```bash
make check
make test
```


