Files and images, dropped in
Drag files and images straight into the composer. Each one becomes a preview you can inspect or remove before the message is sent.
Loading features...
Features · AI Chat
The composer takes files, images, dictation, and slash commands, then sends them to the model you picked for this thread. What comes back carries the reasoning it did, the tools it called, and the sources it read, and anything substantial opens as an artifact beside the conversation.
The transcript
429. Read lib/retry.ts, check what the provider asks for, and rewrite it.retry-after header fixes it.export async function withRetry<T>(run: () => Promise<T>, max = 4) {
for (let attempt = 0; attempt < max; attempt++) {
try {
return await run();
} catch (err) {
if (!isRateLimited(err) || attempt === max - 1) throw err;
await sleep(retryAfterMs(err) ?? 2 ** attempt * 500);
}
}
}The composer
Drag files and images straight into the composer. Each one becomes a preview you can inspect or remove before the message is sent.
The voice button records, transcribes, and drops the text into the composer, where you can edit it like anything else you typed.
Search-capable models reach the live web on their own when an answer should not come from model memory alone. The composer states whether search is on for the model you picked.
Typing “/” opens a menu of the built-in commands, the custom commands you saved in Settings, and every skill installed on this surface.
The footer names the model in use and marks it with its provider. Reach 38 models from 10+ providers, and set the reasoning effort where the model supports one.
Commands
| /search | Search the web. |
| /think | Extended reasoning. |
| /image | Generate an image. Listed when an image model is available to you. |
| /code | Run code in a sandbox. Listed when the selected model supports code execution. |
| /browser | Automate browser actions. Desktop only. |
| /terminal | Execute shell commands. Desktop only. |
| /database | Run database queries. Desktop only. |
Around the chat
Open a thread
AGI Web runs in the browser with the command menu, the model footer, and the artifacts panel. The desktop app adds the terminal, browser, and database commands.