| name | dspy-optimize-anything |
| description | Universal text artifact optimizer using GEPA's optimize_anything API for code, prompts, agent architectures, configs, and more |
| allowed-tools | ["Read","Write","Glob","Grep"] |
GEPA optimize_anything
Goal
Optimize any artifact representable as text — code, prompts, agent architectures, vector graphics, configurations — using a single declarative API powered by GEPA's reflective evolutionary search.
When to Use
- Beyond prompt optimization — optimizing code, configs, SVGs, scheduling policies, etc.
- Single hard problems — circle packing, kernel generation, algorithm discovery
- Batch related problems — CUDA kernels, code generation tasks with cross-transfer
- Generalization — agent skills, policies, or prompts that must transfer to unseen inputs
- When you can express quality as a score and provide diagnostic feedback (ASI)
Inputs
| Input | Type | Description |
|---|
seed_candidate | str | dict[str, str] | None | Starting artifact text, or None for seedless mode |
evaluator | Callable | Returns score (higher=better), optionally with ASI dict |
dataset | list | None | Training examples (for multi-task and generalization modes) |
valset | list | None | Validation set (for generalization mode) |
objective | str | None | Natural language description of what to optimize for |
background | str | None | Domain knowledge and constraints |
config | GEPAConfig | None | Engine, reflection, and tracking settings |
Outputs
| Output | Type | Description |
|---|
result.best_candidate | str | dict | Best optimized artifact |
Workflow
Phase 1: Install
pip install gepa
Phase 2: Define Evaluator with ASI
The evaluator scores a candidate and returns Actionable Side Information (ASI) — diagnostic feedback that guides the LLM proposer during reflection.
Simple evaluator (score only):
import gepa.optimize_anything as oa
def evaluate(candidate: str) -> float:
score, diagnostic = run_my_system(candidate)
oa.log(f"Error: {diagnostic}")
return score
Rich evaluator (score + structured ASI):
def evaluate(candidate: str) -> tuple[float, dict]:
result = execute_code(candidate)
return result.score, {
"Error": result.stderr,
"Output": result.stdout,
"Runtime": f"{result.time_ms:.1f}ms",
}
ASI can include open-ended text, structured data, multi-objectives (via scores), or images (via gepa.Image) for vision-capable LLMs.
Phase 3: Choose Optimization Mode
Mode 1 — Single-Task Search: Solve one hard problem. No dataset needed.
result = oa.optimize_anything(
seed_candidate="<your initial artifact>",
evaluator=evaluate,
)
Mode 2 — Multi-Task Search: Solve a batch of related problems with cross-transfer.
result = oa.optimize_anything(
seed_candidate="<your initial artifact>",
evaluator=evaluate,
dataset=tasks,
)
Mode 3 — Generalization: Build a skill/prompt/policy that transfers to unseen problems.
result = oa.optimize_anything(
seed_candidate="<your initial artifact>",
evaluator=evaluate,
dataset=train,
valset=val,
)
Seedless mode: Describe what you need instead of providing a seed.
result = oa.optimize_anything(
evaluator=evaluate,
objective="Generate a Python function `reverse()` that reverses a string.",
)
Phase 4: Use Results
print(result.best_candidate)
Production Example
import gepa.optimize_anything as oa
from gepa import Image
import logging
logger = logging.getLogger(__name__)
GOAL = "a pelican riding a bicycle"
VLM = "vertex_ai/gemini-3-flash-preview"
VISUAL_ASPECTS = [
{"id": "overall", "criteria": f"Rate overall quality of this SVG ({GOAL}). SCORE: X/10"},
{"id": "anatomy", "criteria": "Rate pelican accuracy: beak, pouch, plumage. SCORE: X/10"},
{"id": "bicycle", "criteria": "Rate bicycle: wheels, frame, handlebars, pedals. SCORE: X/10"},
{"id": "composition", "criteria": "Rate how convincingly the pelican rides the bicycle. SCORE: X/10"},
]
def evaluate(candidate, example):
"""Render SVG, score with a VLM, return (score, ASI)."""
image = render_image(candidate["svg_code"])
score, feedback = get_vlm_score_feedback(VLM, image, example["criteria"])
return score, {
"RenderedSVG": Image(base64_data=image, media_type="image/png"),
"Feedback": feedback,
}
result = oa.optimize_anything(
seed_candidate={"svg_code": "<svg>...</svg>"},
evaluator=evaluate,
dataset=VISUAL_ASPECTS,
background=f"Optimize SVG source code depicting '{GOAL}'. "
,
)
logger.info()
() -> [, ]:
subprocess, json
proc = subprocess.run(
[, , candidate],
capture_output=, text=, timeout=,
)
proc.returncode != :
oa.log()
, {: proc.stderr}
:
output = json.loads(proc.stdout)
output[], {
: output.get(),
: ,
}
(json.JSONDecodeError, KeyError) e:
oa.log()
, {: (e), : proc.stdout}
result = oa.optimize_anything(
evaluator=evaluate_solver,
objective=
,
background=
,
)
(result.best_candidate)
() -> [, ]:
exec_globals = {}
(candidate, exec_globals)
agent_fn = exec_globals.get()
agent_fn :
, {: }
:
prediction = agent_fn(example[])
correct = prediction == example[]
score = correct
feedback = correct (
)
score, {: prediction, : feedback}
Exception e:
, {: (e)}
result = oa.optimize_anything(
seed_candidate=,
evaluator=evaluate_agent,
dataset=train_tasks,
valset=val_tasks,
background=
,
)
(result.best_candidate)
Integration with DSPy
optimize_anything complements DSPy's built-in optimizers. Use DSPy optimizers (GEPA, MIPROv2, BootstrapFewShot) for DSPy programs, and optimize_anything for arbitrary text artifacts outside DSPy:
import dspy
import gepa.optimize_anything as oa
optimizer = dspy.GEPA(
metric=gepa_metric,
reflection_lm=dspy.LM("openai/gpt-4o"),
auto="medium",
)
compiled = optimizer.compile(agent, trainset=trainset)
result = oa.optimize_anything(
seed_candidate=my_config_yaml,
evaluator=eval_config,
background="Optimize Kubernetes scheduling policy for cost.",
)
Best Practices
- Rich ASI — The more diagnostic feedback you provide, the better the proposer can reason about improvements
- Use
oa.log() — Route prints to the proposer as ASI instead of stdout
- Structured returns — Return
(score, dict) tuples for multi-faceted diagnostics
- Seedless for exploration — Use
objective= when the solution space is large and unfamiliar
- Background context — Provide domain knowledge via
background= to constrain the search
- Generalization mode — Always provide
valset when the artifact must transfer to unseen inputs
- Images as ASI — Use
gepa.Image to pass rendered outputs to vision-capable LLMs
Limitations
- Requires the
gepa package (pip install gepa)
- Evaluator must be deterministic or low-variance for stable optimization
- Compute cost scales with number of candidates explored
- Single-task mode does not generalize; use mode 3 with
valset for transfer
- Currently powered by GEPA backend; API is backend-agnostic for future strategies