Testing your Agents¶
Before you deploy your agent, you should test it to ensure that it is working as
intended. The easiest way to test your agent in your development environment is
to use the adk api_server
command. This command will launch a local FastAPI
server, where you can run cURL commands or send API requests to test your agent.
Local testing¶
Local testing involves launching a local API server, creating a session, and sending queries to your agent. First, ensure you are in the correct working directory:
Launch the Local Server
Next, launch the local FastAPI server:
The output should appear similar to:
INFO: Started server process [12345]
INFO: Waiting for application startup.
INFO: Application startup complete.
INFO: Uvicorn running on http://0.0.0.0:8000 (Press CTRL+C to quit)
Your server is now running locally at http://0.0.0.0:8000
.
Create a new session
With the API server still running, open a new terminal window or tab and create a new session with the agent using:
curl -X POST http://0.0.0.0:8000/apps/my_sample_agent/users/u_123/sessions/s_123 \
-H "Content-Type: application/json" \
-d '{"state": {"key1": "value1", "key2": 42}}'
Let's break down what's happening:
http://0.0.0.0:8000/apps/my_sample_agent/users/u_123/sessions/s_123
: This creates a new session for your agentmy_sample_agent
, which is the name of the agent folder, for a user ID (u_123
) and for a session ID (s_123
). You can replacemy_sample_agent
with the name of your agent folder. You can replaceu_123
with a specific user ID, ands_123
with a specific session ID.{"state": {"key1": "value1", "key2": 42}}
: This is optional. You can use this to customize the agent's pre-existing state (dict) when creating the session.
This should return the session information if it was created successfully. The output should appear similar to:
{"id":"s_123","app_name":"my_sample_agent","user_id":"u_123","state":{"state":{"key1":"value1","key2":42}},"events":[],"last_update_time":1743711430.022186}
Info
You cannot create multiple sessions with exactly the same user ID and
session ID. If you try to, you may see a response, like:
{"detail":"Session already exists: s_123"}
. To fix this, you can either
delete that session (e.g., s_123
), or choose a different session ID.
Send a query
There are two ways to send queries via POST to your agent, via the /run
or
/run_sse
routes.
POST http://0.0.0.0:8000/run
: collects all events as a list and returns the list all at once. Suitable for most users (if you are unsure, we recommend using this one).POST http://0.0.0.0:8000/run_sse
: returns as Server-Sent-Events, which is a stream of event objects. Suitable for those who want to be notified as soon as the event is available. With/run_sse
, you can also setstreaming
totrue
to enable token-level streaming.
Using /run
curl -X POST http://0.0.0.0:8000/run \
-H "Content-Type: application/json" \
-d '{
"app_name": "my_sample_agent",
"user_id": "u_123",
"session_id": "s_123",
"new_message": {
"role": "user",
"parts": [{
"text": "Hey whats the weather in new york today"
}]
}
}'
If using /run
, you will see the full output of events at the same time, as a
list, which should appear similar to:
[{"content":{"parts":[{"functionCall":{"id":"af-e75e946d-c02a-4aad-931e-49e4ab859838","args":{"city":"new york"},"name":"get_weather"}}],"role":"model"},"invocation_id":"e-71353f1e-aea1-4821-aa4b-46874a766853","author":"weather_time_agent","actions":{"state_delta":{},"artifact_delta":{},"requested_auth_configs":{}},"long_running_tool_ids":[],"id":"2Btee6zW","timestamp":1743712220.385936},{"content":{"parts":[{"functionResponse":{"id":"af-e75e946d-c02a-4aad-931e-49e4ab859838","name":"get_weather","response":{"status":"success","report":"The weather in New York is sunny with a temperature of 25 degrees Celsius (41 degrees Fahrenheit)."}}}],"role":"user"},"invocation_id":"e-71353f1e-aea1-4821-aa4b-46874a766853","author":"weather_time_agent","actions":{"state_delta":{},"artifact_delta":{},"requested_auth_configs":{}},"id":"PmWibL2m","timestamp":1743712221.895042},{"content":{"parts":[{"text":"OK. The weather in New York is sunny with a temperature of 25 degrees Celsius (41 degrees Fahrenheit).\n"}],"role":"model"},"invocation_id":"e-71353f1e-aea1-4821-aa4b-46874a766853","author":"weather_time_agent","actions":{"state_delta":{},"artifact_delta":{},"requested_auth_configs":{}},"id":"sYT42eVC","timestamp":1743712221.899018}]
Using /run_sse
curl -X POST http://0.0.0.0:8000/run_sse \
-H "Content-Type: application/json" \
-d '{
"app_name": "my_sample_agent",
"user_id": "u_123",
"session_id": "s_123",
"new_message": {
"role": "user",
"parts": [{
"text": "Hey whats the weather in new york today"
}]
},
"streaming": false
}'
You can set streaming
to true
to enable token-level streaming, which means
the response will be returned to you in multiple chunks and the output should
appear similar to:
data: {"content":{"parts":[{"functionCall":{"id":"af-f83f8af9-f732-46b6-8cb5-7b5b73bbf13d","args":{"city":"new york"},"name":"get_weather"}}],"role":"model"},"invocation_id":"e-3f6d7765-5287-419e-9991-5fffa1a75565","author":"weather_time_agent","actions":{"state_delta":{},"artifact_delta":{},"requested_auth_configs":{}},"long_running_tool_ids":[],"id":"ptcjaZBa","timestamp":1743712255.313043}
data: {"content":{"parts":[{"functionResponse":{"id":"af-f83f8af9-f732-46b6-8cb5-7b5b73bbf13d","name":"get_weather","response":{"status":"success","report":"The weather in New York is sunny with a temperature of 25 degrees Celsius (41 degrees Fahrenheit)."}}}],"role":"user"},"invocation_id":"e-3f6d7765-5287-419e-9991-5fffa1a75565","author":"weather_time_agent","actions":{"state_delta":{},"artifact_delta":{},"requested_auth_configs":{}},"id":"5aocxjaq","timestamp":1743712257.387306}
data: {"content":{"parts":[{"text":"OK. The weather in New York is sunny with a temperature of 25 degrees Celsius (41 degrees Fahrenheit).\n"}],"role":"model"},"invocation_id":"e-3f6d7765-5287-419e-9991-5fffa1a75565","author":"weather_time_agent","actions":{"state_delta":{},"artifact_delta":{},"requested_auth_configs":{}},"id":"rAnWGSiV","timestamp":1743712257.391317}
Info
If you are using /run_sse
, you should see each event as soon as it becomes
available.
Integrations¶
ADK uses Callbacks to integrate with third-party observability tools. These integrations capture detailed traces of agent calls and interactions, which are crucial for understanding behavior, debugging issues, and evaluating performance.
- Comet Opik is an open-source LLM observability and evaluation platform that natively supports ADK.
Deploying your agent¶
Now that you've verified the local operation of your agent, you're ready to move on to deploying your agent! Here are some ways you can deploy your agent:
- Deploy to Agent Engine, the easiest way to deploy your ADK agents to a managed service in Vertex AI on Google Cloud.
- Deploy to Cloud Run and have full control over how you scale and manage your agents using serverless architecture on Google Cloud.