Metadata-Version: 2.4
Name: optimaze
Version: 0.1.0
Summary: AI-powered optimization model tuning
Author: Daniel Puri
License: MIT
Project-URL: Homepage, https://optimaze.ai
Keywords: optimization,gurobi,solver,tuning,ai,mip,linear-programming
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Mathematics
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: typer>=0.9.0
Requires-Dist: httpx>=0.24.0
Requires-Dist: rich>=13.0.0

# Optimaze

AI-powered optimization model tuning. Automatically improves your Gurobi models.

## Installation

```bash
pip install optimaze
```

## Usage

```bash
optimaze optimize model.py --repo https://github.com/you/repo --key YOUR_KEY
```

## What it does

1. Runs your optimization model
2. Analyzes solver logs
3. Commits parameter improvements to your repo
4. Repeats until no more improvements found

Typical speedup: **20-50%**

## Example

```
============================================================
  OPTIMAZE
  AI-powered optimization tuning
============================================================

Script:     /path/to/model.py
Repo:       https://github.com/you/repo

[Iteration 0] Running model...
  Runtime: 18.25s
  (baseline)

[Iteration 1] Running model...
  Runtime: 13.10s
  Improvement: 28.2% faster

RESULTS
----------------------------------------
Baseline:  18.25s
Best:      13.10s
Speedup:   +28.2%

To apply:
  git merge agent/optimize-sess_xxxxx
```

## Requirements

- Python 3.10+
- Gurobi installed with valid license
- Git configured for your repo

## Environment Variables

- `OPTIMAZE_KEY`: Your license key
- `OPTIMAZE_SERVER`: Custom server URL (optional)

## License

MIT
