Overview
This example walks through running ArkSim against a customer service agent built for an insurance company (XYZ Insurance, part of XYZ Bank Group). The agent is designed to answer customer questions about insurance products and coverage, including topics like policy details, claims processes, deductibles, and coverage limits. The example includes two ready-to-run agent implementations you can test against out of the box, and a guide for plugging in your own agent once you’re familiar with the setup.Example Agents
Option 1: OpenAI API
A lightweight agent that calls the OpenAI API directly. Quick start with minimal setup.
Option 2: OpenAI Agents SDK
Agent built with the OpenAI Agents SDK, backed by an insurance knowledge base; supports A2A, Chat Completions, or custom agent connector.
Scenarios
The example ships with a set of pre-built scenarios inscenarios.json representing realistic insurance customer interactions. Each scenario defines a simulated user with a distinct persona, goal, and background knowledge drawn from insurance product documentation.
The scenario goals are:
- Learn how home insurance deductibles work, when to file a claim, and how they affect your premium and payout.
- Get a denied water damage claim (water heater 17 years old; policy excludes tanks 15+) overturned or learn how to fight it, including legal options; push back if the agent only repeats the policy.
- Renew Basic Form home insurance at the same price; push back if the agent upsells Broad or Comprehensive Form or extra features.
- Get a clear recommendation and dollar amount for personal condo insurance as a first-time buyer, without lengthy needs questions.
- Bundle home, two cars, and motorcycle with XYZ and get a specific savings number; resist needs questions or comparisons.
scenarios.json in the example directory and can be edited or extended to reflect your own use case.
Before following either path, ensure ArkSim is installed (
pip install arksim).Option 1: OpenAI Agent
This agent calls the OpenAI API directly, with no server setup required.1
Set your API key
2
Run simulation and evaluation
Run from the
examples/bank-insurance directory:Option 2: In-house Agent (OpenAI Agents SDK)
This agent is a customer service agent built with the OpenAI Agents SDK, backed by an insurance knowledge base. It can be exposed via either the A2A Protocol or a Chat Completions-compatible endpoint.1
Select agent config
In the example directory, use the config file for your chosen interface:
- A2A:
config_a2a.yaml(inline agent config; uses${A2A_API_KEY}) - Chat Completions:
config_chat_completions.yaml(inline agent config; uses${AGENT_API_KEY}) - Custom agent connector:
config_custom.yaml(loads agent directly as a Python class — no server needed)
2
Install agent dependencies
- uv
- conda
pip install -r agent_server/requirements.txt3
Start the agent server
- A2A
- Chat Completions
- Custom
Exposes an A2A-compatible agent on port Run from the repository root (or the directory that contains the
9999. Run from the repository root:examples package). If your layout differs, use the module path that resolves to agent_server/a2a/server.py under the bank-insurance example.4
Run simulation and evaluation
In a new terminal, from
examples/bank-insurance, run the commands for the same interface you used in step 3. Use the same API key you set there.- A2A
- Chat Completions
- Custom
Running with Your Own Agent
To test your own backend agent against these scenarios:- Chat Completions: Follow the comments in
agent_server/chat_completions/server.pyto swap in your own backend logic or point to your endpoint. - A2A: Implement your own A2A executor in
agent_server/a2a/agent_executor.py. - Custom: Subclass
BaseAgentand pointconfig_custom.yamlat your module. See Custom agent configuration for details.
agent_config field in the config YAML is updated. Then run simulation and evaluation as above.