Metadata-Version: 2.4
Name: autoresearchstudio
Version: 0.3.1
Summary: Generalized autonomous ML research framework
License-Expression: MIT
Requires-Python: >=3.10
Requires-Dist: pyyaml>=6.0
Requires-Dist: requests>=2.28
Description-Content-Type: text/markdown

# autoresearchstudio

Generalized autonomous ML research framework. Inspired by [Karpathy's autoresearch](https://github.com/karpathy/autoresearch).

## Install

```bash
pip install autoresearchstudio
```

## Quick start

```bash
# Initialize a project (use --from-template karpathy for LLM pretraining)
ars init

# Edit autoresearch.yaml to match your project

# Start a run
ars setup --tag mar21

# The AI agent then uses these commands in a loop:
ars run --description "baseline"
ars log --description "baseline"
ars judge
```
