ai
Version:
AI SDK by Vercel - build apps like ChatGPT, Claude, Gemini, and more with a single interface for any model using the Vercel AI Gateway or go direct to OpenAI, Anthropic, Google, or any other model provider.
163 lines (128 loc) • 4.96 kB
text/mdx
---
title: Terminal UI
description: Run AI SDK agents in an interactive terminal UI.
---
The `@ai-sdk/tui` package lets you run a `ToolLoopAgent` in an interactive
terminal interface. It is useful for local development, demos, and internal
tools where a terminal experience is enough and you do not want to build a
custom UI.
The terminal UI handles prompt input, streamed assistant responses, markdown
rendering, tool cards, reasoning sections, scrolling, and tool approval prompts.
Install `@ai-sdk/tui` alongside `ai` and the provider package you use:
<Snippet text={`pnpm add @ai-sdk/tui ai @ai-sdk/openai`} prompt={false} />
Create a `ToolLoopAgent` and pass it to `runAgentTUI`:
```ts
import { openai } from '@ai-sdk/openai';
import { runAgentTUI } from '@ai-sdk/tui';
import { ToolLoopAgent, tool } from 'ai';
import { z } from 'zod';
const agent = new ToolLoopAgent({
model: openai('gpt-5'),
instructions:
'You are a helpful terminal assistant. Answer in markdown and use tools when they help.',
tools: {
weather: tool({
description: 'Get the weather in a location',
inputSchema: z.object({
location: z.string().describe('The location to get the weather for'),
}),
execute: async ({ location }) => ({
location,
temperature: 72,
}),
}),
},
});
await runAgentTUI({
title: 'Weather Agent',
agent,
});
```
`runAgentTUI` runs until the user exits with `Esc` or `Ctrl+C`.
Pass a sandbox session with the `sandbox` option when your agent tools need an
execution environment:
```ts
import { createJustBashSandbox } from '@ai-sdk/sandbox-just-bash';
const sandboxSession = await createJustBashSandbox({
cwd: '/home/user',
}).createSession();
await runAgentTUI({
title: 'Sandbox Agent',
agent,
sandbox: sandboxSession.restricted(),
});
```
The terminal UI forwards the sandbox to every agent call as
`experimental_sandbox`. Tool description functions and tool `execute` functions
can read it from their options and delegate command or file operations to it.
Add the sandbox description to your agent instructions if the model should know
details such as the working directory, public hostname, or exposed ports.
You can control how tool calls, reasoning, and response statistics are shown:
```ts
await runAgentTUI({
title: 'Weather Agent',
agent,
tools: 'auto-collapsed',
reasoning: 'collapsed',
responseStatistics: 'outputTokensPerSecond',
contextSize: 200_000,
});
```
Settings:
- `tools`: Controls tool call rendering. Use `"full"` to show tool input and
output, `"collapsed"` to show only tool cards, `"auto-collapsed"` to show the
latest tool expanded until another visible section appears, or `"hidden"` to
omit tool calls. Defaults to `"auto-collapsed"`.
- `reasoning`: Controls reasoning rendering. Use `"full"` to show reasoning,
`"collapsed"` to show only reasoning cards, `"auto-collapsed"` to show the
latest reasoning expanded until another visible section appears, or `"hidden"`
to omit reasoning. Defaults to `"auto-collapsed"`.
- `responseStatistics`: Use `"outputTokensPerSecond"` to show output token
throughput or `"outputTokenCount"` to show output token count. Defaults to
`"outputTokensPerSecond"`.
- `contextSize`: When provided, the terminal UI shows total token usage as a
percentage of the model context window.
`runAgentTUI` supports `ToolLoopAgent` tool approval flows. When an agent emits a
manual approval request, the terminal UI prompts the user to approve or deny the
tool call before the agent continues.
```ts
const agent = new ToolLoopAgent({
model: openai('gpt-5'),
tools: { weather },
toolApproval: {
weather: ({ location }) =>
location.toLowerCase().includes('san francisco')
? 'approved'
: 'user-approval',
},
});
await runAgentTUI({ title: 'Weather Agent', agent });
```
`runAgentTUI` is designed for agents that can be run directly from terminal user
input. The agent must not require per-call options and must not use structured
output, because the terminal UI cannot infer those values from a free-form
prompt.
Use `agent.generate()` or `agent.stream()` directly for examples or apps that
need fixed prompts, call options, structured output, custom result inspection, or
custom stream processing.
- `Enter`: submit prompt
- `y` / `n`: approve or deny tool calls
- `Up` / `Down`: scroll transcript
- `PageUp` / `PageDown`: scroll transcript by a full page
- `Ctrl+L`: repaint
- `Esc` / `Ctrl+C`: exit
- [Building Agents](/docs/agents/building-agents) for creating `ToolLoopAgent`
instances
- [Tool Approvals](/docs/agents/tool-approvals) for configuring human review of
tool calls
- [runAgentTUI API Reference](/docs/reference/ai-sdk-tui/run-agent-tui) for
detailed parameter documentation