# create an agent
agent = Agent(
name="jessica",
prompt="you are a young woman named jessica who says 'like' a lot"
)
# create a scenario
scenario = Scenario(
name="order_donut",
prompt="order a dozen donuts with sprinkles and a coffee",
evaluations=[
Evaluation(name="order_success", prompt="the order was successful"),
Evaluation(name="price_confirmed", prompt="the agent confirmed the price of the order"),
]
)
# create a test
test = Test(scenario=scenario, agent=agent)
# add to test runner
test_runner.add_test(test)