-
Notifications
You must be signed in to change notification settings - Fork 3
examples/prompt: GEPA as a Daft pipeline #42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
everettVT
wants to merge
1
commit into
main
Choose a base branch
from
everettVT/gepa-daft-example
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,245 @@ | ||
| # /// script | ||
| # description = "GEPA: reflective prompt optimization as a Daft pipeline (Pareto selection + reflect-and-mutate)" | ||
| # requires-python = ">=3.12" | ||
| # dependencies = ["daft[openai]>=0.7.10"] | ||
| # /// | ||
| """GEPA, as a Daft pipeline — reflective prompt optimization in one file. | ||
|
|
||
| GEPA (Agrawal et al. 2025, arXiv:2507.19457) evolves a prompt by *reflecting* on | ||
| its own failures and keeping a Pareto frontier of candidates — not a single | ||
| best-by-mean. The algorithm below is ~70 lines of plain Python; its two effects | ||
| are Daft expressions: | ||
|
|
||
| eval = daft.functions.prompt(...) -> classify each example, score vs gold | ||
| reflect = daft.functions.prompt(...) -> rewrite the instruction from failures | ||
|
|
||
| No agent framework, no orchestration glue: the optimizer is a loop, the LLM is a | ||
| column, and Daft runs the batch. | ||
|
|
||
| export OPENROUTER_API_KEY=sk-or-... | ||
| uv run prompt_gepa.py | ||
| # No key? It runs a deterministic mock so the loop is still visible. | ||
| """ | ||
|
|
||
| from __future__ import annotations | ||
|
|
||
| import os | ||
| from random import Random | ||
|
|
||
| # =========================================================================== | ||
| # GEPA — the algorithm (pure; the two effects are injected by the caller). | ||
| # Agrawal et al. 2025, arXiv:2507.19457 — Algorithm 1 (reflective evolution) + | ||
| # Algorithm 2 (Pareto candidate selection). Alg-line refs inline. | ||
| # =========================================================================== | ||
|
|
||
|
|
||
| def pareto_select(pool, instance_ids, rng): | ||
| """GEPA Algorithm 2 — instance-wise Pareto selection (NOT top-k-by-mean). | ||
|
|
||
| 1. per-instance best: s*[i] = max_k S[k][i] | ||
| 2. per-instance winners: P*[i] = {k : S[k][i] == s*[i]} | ||
| 3. prune candidates strictly dominated across instances | ||
| 4. sample ∝ #instances each candidate wins | ||
|
|
||
| A specialist that wins one instance survives even if its mean is low — exactly | ||
| the diversity beam search throws away. | ||
| """ | ||
| star = {i: max(c["scores"][i] for c in pool) for i in instance_ids} | ||
| wins = {c["sid"]: sum(1 for i in instance_ids if c["scores"][i] == star[i]) for c in pool} | ||
| frontier = [c for c in pool if wins[c["sid"]] > 0] | ||
| nondominated = [ | ||
| c | ||
| for c in frontier | ||
| if not any( | ||
| d is not c | ||
| and all(d["scores"][i] >= c["scores"][i] for i in instance_ids) | ||
| and any(d["scores"][i] > c["scores"][i] for i in instance_ids) | ||
| for d in frontier | ||
| ) | ||
| ] | ||
| return rng.choices(nondominated, weights=[wins[c["sid"]] for c in nondominated], k=1)[0] | ||
|
|
||
|
|
||
| def _candidate(sid, text, res, instance_ids): | ||
| return { | ||
| "sid": sid, | ||
| "text": text, | ||
| "scores": {i: res[i]["s"] for i in instance_ids}, # per-instance VECTOR (Pareto needs it) | ||
| "fbk": {i: res[i]["fb"] for i in instance_ids}, | ||
| } | ||
|
|
||
|
|
||
| def gepa_search(*, seed_text, instance_ids, eval_fn, reflect_fn, budget, minibatch, rng): | ||
| """GEPA Algorithm 1 — reflective evolution with Pareto selection. | ||
|
|
||
| eval_fn(sid, text, ids) -> {id: {"s": float, "fb": str}} # score + feedback | ||
| reflect_fn(text, feedback_block) -> str # GEPA's UpdatePrompt | ||
| Budget is counted in metric calls (one candidate x one instance = one call). | ||
| """ | ||
| seed_res = eval_fn("gepa-seed", seed_text, instance_ids) | ||
| pool = [_candidate("gepa-seed", seed_text, seed_res, instance_ids)] | ||
| spent = len(instance_ids) # Alg 1 L7 + L18-20: seed full-eval on D_pareto | ||
| trace, gen = [], 0 | ||
|
|
||
| while spent + minibatch <= budget: # Alg 1 L8: while budget not exhausted | ||
| gen += 1 | ||
| parent = pareto_select(pool, instance_ids, rng) # Alg 2 | ||
| mb = rng.sample(instance_ids, min(minibatch, len(instance_ids))) # minibatch | ||
| sigma = sum(parent["scores"][i] for i in mb) / len(mb) # sigma (cached) | ||
| fb = "\n".join(f"- instance {i}: {parent['fbk'][i]}" for i in mb) | ||
| child_text = reflect_fn(parent["text"], fb) # Alg 1 L13: UpdatePrompt | ||
| csid = f"gepa-g{gen}" | ||
| c_res = eval_fn(f"{csid}-mb", child_text, mb) # eval child on minibatch | ||
| spent += len(mb) | ||
| sigma_prime = sum(c_res[i]["s"] for i in mb) / len(mb) # sigma' | ||
| accepted = sigma_prime > sigma # Alg 1 L16: accept gate | ||
| trace.append( | ||
| {"gen": gen, "parent": parent["sid"], "sigma": round(sigma, 3), | ||
| "sigma_prime": round(sigma_prime, 3), "accepted": accepted} | ||
| ) | ||
| if accepted and spent + len(instance_ids) <= budget: | ||
| full = eval_fn(csid, child_text, instance_ids) # Alg 1 L18-20: full-eval | ||
| spent += len(instance_ids) | ||
| pool.append(_candidate(csid, child_text, full, instance_ids)) | ||
|
|
||
| best = max(pool, key=lambda c: sum(c["scores"].values()) / len(c["scores"])) | ||
| return { | ||
| "text": best["text"], | ||
| "mean": sum(best["scores"].values()) / len(best["scores"]), | ||
| "pool": len(pool), | ||
| "calls": spent, | ||
| "trace": trace, | ||
| } | ||
|
|
||
|
|
||
| # =========================================================================== | ||
| # The task: a tiny sentiment set. Gold labels => deterministic scoring (no LLM | ||
| # judge). The last three are the hard cases the seed instruction trips on; GEPA | ||
| # has to *discover* them from feedback and write guidance for them. | ||
| # =========================================================================== | ||
| DATA = [ | ||
| ("Absolutely loved every minute of it.", "positive"), | ||
| ("A complete waste of my evening.", "negative"), | ||
| ("Best purchase I've made all year.", "positive"), | ||
| ("It broke on the second day.", "negative"), | ||
| ("Oh great, another Monday. Just what I needed.", "negative"), # sarcasm | ||
| ("This is not bad at all, honestly.", "positive"), # negation | ||
| ("Well, it certainly exists, I'll give it that.", "negative"), # faint praise | ||
| ] | ||
| IDS = list(range(len(DATA))) | ||
| SEED = "Classify the sentiment of the text as 'positive' or 'negative'." | ||
|
|
||
| # Any OpenRouter model id works. A small task model leaves more headroom for GEPA | ||
| # to demonstrate a lift; a strong reflection model writes better instructions. | ||
| TASK_MODEL = "meta-llama/llama-3.1-8b-instruct" # runs per example | ||
| REFLECT_MODEL = "openai/gpt-4o" # runs once per generation | ||
| FORMAT = "\nRespond with exactly one word: positive or negative." # fixed scaffold; GEPA evolves only SEED | ||
|
|
||
|
|
||
| # --------------------------------------------------------------------------- | ||
| # Effects, backed by Daft. Each eval/reflect is one prompt() over a batch. | ||
| # --------------------------------------------------------------------------- | ||
| def daft_effects(): | ||
| import daft | ||
| from daft.functions import prompt | ||
|
|
||
| daft.set_provider( | ||
| "openai", | ||
| api_key=os.environ["OPENROUTER_API_KEY"], | ||
| base_url="https://openrouter.ai/api/v1", | ||
| # Anthropic swap: base_url="https://api.anthropic.com/v1/", api_key=os.environ["ANTHROPIC_API_KEY"] | ||
| ) | ||
|
|
||
| def eval_fn(sid, instruction, ids): | ||
| df = ( | ||
| daft.from_pydict( | ||
| {"id": ids, "text": [DATA[i][0] for i in ids], "gold": [DATA[i][1] for i in ids]} | ||
| ) | ||
| .with_column( | ||
| "resp", | ||
| prompt( | ||
| daft.col("text"), | ||
| system_message=instruction + FORMAT, | ||
| model=TASK_MODEL, | ||
| use_chat_completions=True, | ||
| ), | ||
| ) | ||
| .with_column("pred_pos", daft.col("resp").lower().contains("positive")) | ||
| .with_column( | ||
| "ok", | ||
| (daft.col("pred_pos") == (daft.col("gold") == "positive")).cast(daft.DataType.float32()), | ||
| ) | ||
| .select("id", "text", "gold", "pred_pos", "ok") | ||
| .collect() # one materialization per candidate eval — this IS the metric call | ||
| ) | ||
| out = {} | ||
| for r in df.to_pylist(): | ||
| pred = "positive" if r["pred_pos"] else "negative" | ||
| out[r["id"]] = { | ||
| "s": float(r["ok"]), | ||
| "fb": "correct" if r["ok"] else f"said {pred}, gold {r['gold']} for: {r['text']!r}", | ||
| } | ||
| return out | ||
|
|
||
| def reflect_fn(instruction, feedback_block): | ||
| msg = ( | ||
| "Improve this sentiment-classification instruction given how it did on a minibatch.\n\n" | ||
| f"INSTRUCTION:\n{instruction}\n\nFEEDBACK:\n{feedback_block}\n\n" | ||
| "Write one improved instruction that fixes the mistakes. Output only the instruction." | ||
| ) | ||
| df = ( | ||
| daft.from_pydict({"x": [msg]}) | ||
| .with_column("out", prompt(daft.col("x"), model=REFLECT_MODEL, use_chat_completions=True)) | ||
| .collect() | ||
| ) | ||
| return df.to_pylist()[0]["out"].strip() | ||
|
|
||
| return eval_fn, reflect_fn | ||
|
|
||
|
|
||
| # --------------------------------------------------------------------------- | ||
| # Offline mock — same loop shape, no key, no daft import. A prompt "scores" by | ||
| # how many failure modes it names; reflect adds the next missing one. | ||
| # --------------------------------------------------------------------------- | ||
| def mock_effects(): | ||
| cues = {4: "sarcasm", 5: "negation", 6: "faint praise"} | ||
|
|
||
| def eval_fn(sid, instruction, ids): | ||
| out = {} | ||
| for i in ids: | ||
| cue = cues.get(i) | ||
| ok = cue is None or cue in instruction.lower() | ||
| out[i] = {"s": 1.0 if ok else 0.0, "fb": "correct" if ok else f"missed the {cue} case"} | ||
| return out | ||
|
|
||
| def reflect_fn(instruction, feedback_block): | ||
| for cue in ("sarcasm", "negation", "faint praise"): | ||
| if f"the {cue} case" in feedback_block and cue not in instruction.lower(): | ||
| return f"{instruction} Also handle {cue}." | ||
| return instruction | ||
|
|
||
| return eval_fn, reflect_fn | ||
|
|
||
|
|
||
| def main(): | ||
| live = bool(os.environ.get("OPENROUTER_API_KEY")) | ||
| eval_fn, reflect_fn = daft_effects() if live else mock_effects() | ||
| mode = "LIVE (prompt() via OpenRouter)" if live else "offline mock (set OPENROUTER_API_KEY for live)" | ||
| print(f"GEPA as a Daft pipeline | {mode}\n") | ||
|
|
||
| out = gepa_search( | ||
| seed_text=SEED, instance_ids=IDS, eval_fn=eval_fn, reflect_fn=reflect_fn, | ||
| budget=60, minibatch=3, rng=Random(0), | ||
| ) | ||
|
|
||
| print("trace — Pareto-selected parent -> reflect -> minibatch gate:") | ||
| for t in out["trace"]: | ||
| verdict = "accept" if t["accepted"] else "reject" | ||
| print(f" gen {t['gen']:>2} parent={t['parent']:<10} sigma={t['sigma']:.2f} -> sigma'={t['sigma_prime']:.2f} {verdict}") | ||
| print(f"\nseed : {SEED}") | ||
| print(f"best : mean={out['mean']:.2f} (pool={out['pool']}, llm_calls={out['calls']})") | ||
| print(f"evolved : {out['text']}") | ||
|
|
||
|
|
||
| if __name__ == "__main__": | ||
| main() | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When users follow the repo setup and put
OPENROUTER_API_KEYin.env(as the other prompt examples do viaload_dotenv()), this check never sees it during a directuv run examples/prompt/prompt_gepa.py, so the script silently runs the offline mock instead of the Daft/OpenRouter pipeline. That makes the new example appear to work while not exercising the live prompt path for the standard local setup.Useful? React with 👍 / 👎.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@claude can you tackle this and commit to this PR?