Optimas is a unified framework for end-to-end optimization of compound AI systems. While traditional optimization methods focus on single configuration types—such as prompts or hyperparameters—modern compound AI systems require coordinated optimization across multiple heterogeneous configuration types that work well together.
Project description
Optimas: Optimizing Compound AI Systems with Globally Aligned Local Rewards
The repo is currently under preparation and we will release the full implementation as soon as possible!
NEWS
- [Jul 2025] We release Optimas!
What is Optimas?
Optimas is a unified framework for end-to-end optimization of compound AI systems. While traditional optimization methods focus on single configuration types—such as prompts or hyperparameters—modern compound AI systems require coordinated optimization across multiple heterogeneous configuration types that work well together.
Optimas addresses this fundamental challenge through its core innovation: Globally Aligned Local Reward Functions (LRFs) that align each component's optimization with global system performance. This enables efficient, decentralized optimization while ensuring that local improvements contribute meaningfully to global rewards, backed by formal theoretical guarantees.
🔥 Check out our website for more overview!
0. Set up API keys
export OPENAI_API_KEY=[YOUR KEY]
export ANTHROPIC_API_KEY=[YOUR KEY]
1. Generate Preference Data (used for reward model and optimization)
python -m scripts.generate_reward_dataset scripts/configs/generate/{dataset}.yaml
This runs reward data generation over a given dataset + system. Output: HuggingFace-style reward dataset saved locally.
2. Train Initial Reward Model (Local Reward Functions)
CUDA_VISIBLE_DEVICES=2,3,4,5 torchrun --master_port=56781 --nnodes=1 --nproc_per_node=4 -m scripts.train_reward_model scripts/configs/train/{dataset}.yaml
where nnodes is the number of number of nodes, and nproc_per_node is the number of GPUs per node.
Trains a reward model using preference data. You need to include WANDB_ENTITY and WANDB_PROJECT in the .env file or export them in your shell:
export WANDB_ENTITY=your_wandb_entity
export WANDB_PROJECT=your_wandb_project
3. Run Optimization (Prompts, PPO LoRA, Hyperparameters)
CUDA_VISIBLE_DEVICES=6 torchrun --master_port=56790 --nnodes=1 --nproc_per_node=1 -m scripts.optimize_system scripts/configs/optimize/{dataset}.yaml
Uses Globally Aligned Local Reward Functions (LRFs) to optimize component variables. Supports: - prompt tuning (opro, mipro, copro) - hyperparameter search - PPO for local models via LoRA (works with vLLM + OpenAI API) Each component can be optimized independently or jointly.
Remember to include WANDB_ENTITY and WANDB_PROJECT in the .env file or export them in your shell.
4. Evaluate Final System
python scripts/eval_system.py scripts/configs/eval/{dataset}.yaml
Evaluates a saved system state dict on val/test sets. Supports test repeat for randomized components.
Component Types Supported
- Prompt templates (as strings)
- Model config (e.g., model name, temperature)
- Hyperparameters (grid search)
- Local LLM weights (LoRA + PPO finetuning)
Each component declares: - input_fields - output_fields - variable (what to optimize) - variable_search_space (optional)
Adding Your Own System
- Define your pipeline in examples/systems/<your_system>.py as
system_engine() - Register it in examples/systems/init.py
- Add your dataset to examples/datasets/
Example:
def system_engine():
return CompoundAISystem(
components={...},
final_output_fields=[...],
ground_fields=[...],
eval_func=...
)
Reference
Please consider citing our paper if you use our benchmark or code in your work:
@article{optimas,
title = {Optimas: Optimizing Compound AI Systems with Globally Aligned Local Rewards},
author = {
Shirley Wu and Parth Sarthi and Shiyu Zhao and
Aaron Lee and Herumb Shandilya and
Adrian Mladenic Grobelnik and Nurendra Choudhary and
Eddie Huang and Karthik Subbian and
Linjun Zhang and Diyi Yang and
James Zou and Jure Leskovec
},
year = {2025},
journal = {arXiv preprint arXiv:2507.03041},
}
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file optimas_ai-0.0.4.tar.gz.
File metadata
- Download URL: optimas_ai-0.0.4.tar.gz
- Upload date:
- Size: 1.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fc0e6df693418c1b97e46295e4980d94df2599c60641edd2e97214764c2b7b6
|
|
| MD5 |
ee97cf447ba56eee724cd307a527d8e5
|
|
| BLAKE2b-256 |
c369acb4c0230d95af6c1cff4fd186c4fbdab2fd08ca35b68e40c233922204c2
|
File details
Details for the file optimas_ai-0.0.4-py3-none-any.whl.
File metadata
- Download URL: optimas_ai-0.0.4-py3-none-any.whl
- Upload date:
- Size: 105.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
798b7b1e6f6212305858dbafe862cc5f744b31e837953a759a9e4cbb737b253e
|
|
| MD5 |
65ba53b7badda88291abe1544869ffaf
|
|
| BLAKE2b-256 |
cf947a0c8edeacf536836c400d5e87a7af0b96f22943acf76efe4cafc89bf1aa
|