Skip to main content
In about ten minutes, you will create an active agent and see its first run in the AIR trace viewer. You do not need a model-provider key for the staging smoke test.
Select a screenshot to zoom. The screenshots use a disposable staging project and contain no API keys or provider credentials.

Before you begin

  • Python 3.10 or newer
  • Access to the AIR staging console
  • A model-provider key only when you are ready to use a real OpenAI or Anthropic model
1

Create a project

Sign in, select New project, enter a descriptive name, and select Create project. A project is the boundary for agents, tools, members, keys, and provider credentials.
New project dialog with Developer quickstart entered as the project name

Create a project from the Projects screen.

2

Write the agent instructions

Open Prompts, select New prompt, and name it Support assistant. Open the prompt, select New version, and enter:
Add a short change note and create the version.
AIR dialog for creating the first version of a support assistant prompt

Prompt versions preserve the exact instructions used by each run.

3

Create and activate an agent

Open Agents, select New agent, and name it Support agent. Reuse the prompt version you just created.For the first staging smoke test, choose Bring your own provider key, then select Testing and fake-echo. This built-in model requires no key. Leave Activate immediately selected and choose Create & start serving.
AIR agent composer with the support prompt and fake-echo testing model selected

An agent version binds one prompt version, model, allowed-tool set, and limits.

For real responses, choose OpenAI or Anthropic and connect the project provider key when prompted. Keys are encrypted and never shown again.
4

Run the agent in the console

In the agent’s Try it panel, enter When does support open? and select Run test. The Output · streaming panel appears after the first model chunk and grows while the run is active. The transcript records the same event sequence without changing the active configuration.
Active support agent with a succeeded test and visible transcript

The Try it panel is the fastest way to verify a new agent version.

5

Inspect the trace

Select Open full run. The trace shows the exact agent and prompt versions, token usage, cost, model latency, request, response, and immutable configuration snapshot.
AIR trace viewer showing a successful fake-echo model response

A successful run trace with timing, token usage, cost, and model output.

6

Issue an app key

Open Settings and select Issue app key. Copy the key once into your local environment or secret manager. Do not put it in source control.
AIR project settings showing app key and worker key actions

App keys create runs; worker keys register and execute private tools.

7

Create the same run from Python

Install the published SDK:
Copy the agent API ID from the agent page and use it as agent_id:
You now have a project, versioned instructions, an active agent, a successful trace, and application access. Next, connect a private worker.