Skip to Content
ConfigurationSupported Frameworks

Supported Frameworks

Veris supports any agent framework. Your agent runs unmodified inside the sandbox. For full observability including multi-agent traces, tool call tracking, and per-agent system prompts, we recommend one of the following:

Framework-Specific Requirements

Vercel AI SDK

The Vercel AI SDK requires an explicit opt-in to emit trace data. Add experimental_telemetry to every generateText and streamText call:

const result = await generateText({ model: openai("gpt-4o"), prompt: "...", experimental_telemetry: { isEnabled: true }, });

This applies to all AI SDK methods: generateText, streamText, generateObject, and streamObject.