← All templates

Vercel AI SDK Agent

Agent built with the Vercel AI SDK. Streaming responses, tool calling, and structured output with minimal boilerplate.

vercel-aistreaming

What it does

Agent built with the Vercel AI SDK. Streaming responses, tool calling, and structured output with minimal boilerplate.

When to use this

Pick this template when you want to:

  • Get a working agent live in minutes without writing boilerplate
  • Start from a known-good baseline and customize it
  • See how the pieces fit together in a real Reminix project

What's included

  • A ready-to-deploy agent with sensible defaults
  • The runtime SDK and required dependencies pre-configured
  • A serve() entrypoint Reminix can detect and deploy
  • A .env.example listing every secret you need to set

Deploy and invoke

Click Deploy above to push this template to a new project in your Reminix workspace. After the build completes, invoke the agent from any client:

curl -X POST https://api.reminix.com/v1/agents/vercel-ai-agent/invoke \
  -H "Authorization: Bearer $REMINIX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"input": {"prompt": "Hello"}}'

Customize it

The handler is the file you'll touch most. Open it in your editor, replace the body with whatever logic you need, push, and Reminix redeploys automatically. See Creating Agents for the API surface.

What to read next