A/B Prompt Testing for Marketing Copy with .with_()

Tip

What you’ll learn How to run inline smoke tests on agents.

Source: 23_with_variants.py

from adk_fluent import Agent

# Base marketing copywriter agent
base_copywriter = (
    Agent("copywriter")
    .model("gemini-2.5-flash")
    .instruct("Write compelling marketing copy for product launches. Focus on benefits, not features.")
)

# with_() creates independent copies with overrides -- perfect for A/B testing
variant_a = base_copywriter.with_(
    name="copywriter_formal",
    instruct="Write formal, authoritative marketing copy for enterprise products. "
    "Use data-driven language and industry terminology.",
)
variant_b = base_copywriter.with_(
    name="copywriter_casual",
    instruct="Write casual, conversational marketing copy for consumer products. Use humor and relatable language.",
)

# Original is unchanged -- variants are fully independent
assert base_copywriter._config["name"] == "copywriter"
assert base_copywriter._config["model"] == "gemini-2.5-flash"
# Native ADK provides no cloning or variant mechanism. You'd manually
# duplicate constructor calls, risking drift when the base config changes.

Equivalence

# Variants have overridden values
assert variant_a._config["name"] == "copywriter_formal"
assert "formal" in variant_a._config["instruction"]
assert variant_a._config["model"] == "gemini-2.5-flash"  # Inherited from base

assert variant_b._config["name"] == "copywriter_casual"
assert "casual" in variant_b._config["instruction"]
assert variant_b._config["model"] == "gemini-2.5-flash"  # Inherited from base

# Variants are truly independent (modifying one doesn't affect others)
variant_a._config["instruction"] = "Modified!"
assert "benefits" in base_copywriter._config["instruction"]
assert variant_b._config["instruction"] != "Modified!"