ai_sdk_dart 2.0.0 copy "ai_sdk_dart: ^2.0.0" to clipboard
ai_sdk_dart: ^2.0.0 copied to clipboard

Core AI SDK for Dart with provider-agnostic model APIs.

๐Ÿค– AI SDK Dart #

A Dart/Flutter port of Vercel AI SDK v6 โ€” provider-agnostic APIs for text generation, streaming, structured output, tool use, embeddings, image generation, speech, and more.

ai_sdk_dart pub.dev ai_sdk_openai pub.dev ai_sdk_anthropic pub.dev ai_sdk_google pub.dev ai_sdk_azure pub.dev ai_sdk_cohere pub.dev ai_sdk_groq pub.dev ai_sdk_mistral pub.dev ai_sdk_ollama pub.dev ai_sdk_flutter_ui pub.dev ai_sdk_mcp pub.dev ai_sdk_provider pub.dev CI License: MIT Dart SDK


What is this? #

AI SDK Dart brings the core concepts of Vercel AI SDK v6 to Dart and Flutter. Write your AI logic once, swap providers without changing business code, and ship on mobile, web, and server. The API follows the same provider-agnostic model while using idiomatic Dart types and lifecycle primitives.

Upgrading to 2.0 #

Version 2.0 replaces the language-model V3 provider seam with V4 and removes the obsolete V3 types. Most apps can upgrade their coordinated ai_sdk_* dependencies together; custom providers, middleware, and direct provider-type consumers need source changes. See the 2.0 migration guide for the exact renames and contract changes.


Screenshots #

Flutter Chat App (examples/flutter_chat) #

Multi-turn Chat Streaming Response
Multi-turn chat Chat response
Completion Object Stream
Completion result Object stream result

Advanced App (examples/advanced_app) #

Provider Chat Tools Chat
Provider chat Tools chat
Image Generation Multimodal
Image generation Multimodal

โœจ Features #

๐Ÿ—ฃ๏ธ Text Generation & Streaming #

  • generateText โ€” single-turn or multi-step text generation with full result envelope
  • streamText โ€” real-time token streaming with typed event taxonomy
  • smoothStream transform โ€” configurable chunk-size smoothing; delayInMs option adds per-chunk delay for UX pacing
  • Multi-step agentic loops with maxSteps, prepareStep, and stopConditions
  • timeout parameter on all core functions โ€” apply Duration deadlines to any model call
  • Callbacks: onFinish, onStepFinish, onChunk, onError, experimentalOnStart, onAbort

๐Ÿงฉ Structured Output #

  • Output.object(schema) โ€” parse model output into a typed Dart object
  • Output.array(schema) โ€” parse model output into a typed Dart list
  • Output.choice(options) โ€” constrain output to a fixed set of string values
  • Output.json() โ€” raw JSON without schema validation
  • Automatic code-fence stripping (```json ... ```)

๐Ÿ”ง Type-Safe Tools & Multi-Step Agents #

  • tool<Input, Output>() โ€” fully typed tool definitions with JSON schema
  • dynamicTool() โ€” tools with unknown input type for dynamic use cases
  • Tool choice: auto, required, none, or specific tool
  • Tool approval workflow with needsApproval
  • Multi-step agentic loops with automatic tool result injection
  • onInputStart, onInputDelta, onInputAvailable lifecycle hooks

๐Ÿ–ผ๏ธ Multimodal #

  • generateImage โ€” image generation (gpt-image-1 / DALLยทE via OpenAI)
  • generateSpeech โ€” text-to-speech audio synthesis
  • transcribe โ€” speech-to-text transcription
  • Image inputs in prompts (multimodal vision)

๐Ÿงฎ Embeddings & Cosine Similarity #

  • embed() โ€” single value embedding with usage tracking
  • embedMany() โ€” batch embedding for multiple values with configurable chunk size
  • cosineSimilarity() โ€” built-in similarity computation
  • wrapEmbeddingModel() โ€” composable middleware pipeline for embedding models

๐Ÿงฑ Middleware System #

  • wrapLanguageModel(model: ..., middleware: ...) โ€” composable middleware pipeline
  • extractReasoningMiddleware โ€” strips <think> tags into ReasoningPart
  • extractJsonMiddleware โ€” strips ```json ``` fences
  • simulateStreamingMiddleware โ€” converts non-streaming models to streaming
  • defaultSettingsMiddleware โ€” applies default temperature/top-p/etc.
  • addToolInputExamplesMiddleware โ€” enriches tool descriptions with examples
  • wrapEmbeddingModel / wrapImageModel โ€” the same composable middleware pattern for embedding and image models

๐ŸŒ Provider Registry #

  • createProviderRegistry โ€” map provider aliases to model factories
  • customProvider() โ€” lightweight on-the-fly provider construction without a full registry
  • Resolve models by 'provider:modelId' string at runtime
  • Supports 6 model categories: language, embedding, image, speech, transcription, rerank
  • Mix providers in a single registry for multi-provider apps

๐Ÿ“ฑ Flutter UI Controllers & Widgets #

  • ChatController โ€” multi-turn streaming chat with message history
  • CompletionController โ€” single-turn text completion with status
  • ObjectStreamController โ€” streaming typed JSON object updates
  • 19 prebuilt, themeable Material widgets โ€” AiChatScaffold, message list/bubbles, composer, streaming text, typing indicator, tool-call & approval cards, reasoning, citations, usage, and more

๐Ÿ”Œ MCP Client (Model Context Protocol) #

  • MCPClient โ€” connect to MCP servers, discover tools, invoke them
  • StreamableHttpClientTransport โ€” MCP Streamable HTTP transport (2025-06-18) for remote servers
  • StdioMCPTransport โ€” stdio process transport (native platforms)
  • Web-safe โ€” dart:io is isolated behind conditional imports, so the client runs on Flutter web
  • Discovered tools are directly compatible with generateText/streamText

๐Ÿšจ Typed Errors #

  • Sealed AiSdkError hierarchy โ€” AiApiCallError, AiNoObjectGeneratedError, AiRetryError, and more
  • Provider API errors are typed โ€” a non-2xx response throws AiApiCallError carrying the provider's message, type, code, statusCode, raw body, and an isRetryable flag, consistently across every provider

๐Ÿงช Conformance Suite #

  • Comprehensive Dart and Flutter tests across every package and both example apps
  • A repository-wide 99% line-coverage gate enforced in CI
  • Spec-driven JSON fixtures as the source of truth
  • Provider wire-format conformance tests for every provider (plus a typed-error conformance test per provider)
  • MockEmbeddingModelV3 testing utility for embedding model conformance

๐Ÿ“ฆ Packages #

Package pub.dev What it gives you
ai_sdk_dart dart pub add ai_sdk_dart generateText, streamText, tools, middleware, embeddings, registry
ai_sdk_openai dart pub add ai_sdk_openai openai('gpt-4.1-mini'), embeddings, image gen, speech, transcription, reasoning options
ai_sdk_anthropic dart pub add ai_sdk_anthropic anthropic('claude-sonnet-4-5'), extended thinking, speed options
ai_sdk_google dart pub add ai_sdk_google google('gemini-2.0-flash'), embeddings
ai_sdk_azure dart pub add ai_sdk_azure AzureOpenAIProvider(endpoint, apiKey), language models, embeddings
ai_sdk_cohere dart pub add ai_sdk_cohere cohere('command-r-plus'), embeddings, reranking
ai_sdk_groq dart pub add ai_sdk_groq groq('llama3-8b-8192'), ultra-low latency inference
ai_sdk_mistral dart pub add ai_sdk_mistral mistral('mistral-large-latest'), embeddings
ai_sdk_ollama dart pub add ai_sdk_ollama ollama('llama3'), local inference, embeddings
ai_sdk_flutter_ui dart pub add ai_sdk_flutter_ui ChatController, CompletionController, ObjectStreamController + 19 prebuilt chat widgets
ai_sdk_mcp dart pub add ai_sdk_mcp MCPClient, StreamableHttpClientTransport, native-only StdioMCPTransport
ai_sdk_provider (transitive) Provider interfaces for building custom providers
ai_sdk_openai_compatible (transitive) Shared OpenAI Chat Completions base โ€” powers the OpenAI/Azure/Groq/Mistral language models

ai_sdk_provider and ai_sdk_openai_compatible are transitive dependencies โ€” you do not need to add them directly.


๐Ÿš€ Quick Start #

Dart CLI #

dart pub add ai_sdk_dart ai_sdk_openai
import 'dart:io';

import 'package:ai_sdk_dart/ai_sdk_dart.dart';
import 'package:ai_sdk_openai/ai_sdk_openai.dart';

Future<void> main() async {
  final apiKey = Platform.environment['OPENAI_API_KEY'];
  if (apiKey == null || apiKey.isEmpty) {
    throw StateError('Set OPENAI_API_KEY before running this example.');
  }

  final provider = OpenAIProvider(apiKey: apiKey);
  final result = await generateText(
    model: provider('gpt-4.1-mini'),
    prompt: 'Say hello from AI SDK Dart!',
  );
  print(result.text);
}

For server and CLI apps, prefer reading credentials from your runtime environment and passing apiKey: yourself, as shown above. The convenience factories like openai('...'), anthropic('...'), and google('...') read compile-time defines such as OPENAI_API_KEY, so they are best paired with dart run --define=... or Flutter --dart-define=....

Streaming #

import 'dart:io';

final result = await streamText(
  model: openai('gpt-4.1-mini'),
  prompt: 'Count from 1 to 5.',
);
await for (final chunk in result.textStream) {
  stdout.write(chunk);
}

Structured Output #

final result = await generateText<Map<String, dynamic>>(
  model: openai('gpt-4.1-mini'),
  prompt: 'Return the capital and currency of Japan as JSON.',
  output: Output.object(
    schema: Schema<Map<String, dynamic>>(
      jsonSchema: const {
        'type': 'object',
        'properties': {
          'capital': {'type': 'string'},
          'currency': {'type': 'string'},
        },
      },
      fromJson: (json) => json,
    ),
  ),
);
print(result.output); // {capital: Tokyo, currency: JPY}

Type-Safe Tools #

final result = await generateText(
  model: openai('gpt-4.1-mini'),
  prompt: 'What is the weather in Paris?',
  maxSteps: 5,
  tools: {
    'getWeather': tool<Map<String, dynamic>, String>(
      description: 'Get current weather for a city.',
      inputSchema: Schema(
        jsonSchema: const {
          'type': 'object',
          'properties': {'city': {'type': 'string'}},
        },
        fromJson: (json) => json,
      ),
      execute: (input, _) async => 'Sunny, 18ยฐC',
    ),
  },
);
print(result.text);

Error handling #

try {
  final result = await generateText(
    model: openai('gpt-4.1-mini'),
    prompt: 'Hello',
  );
} on AiApiCallError catch (e) {
  // Typed provider error โ€” message, status, and retryability are all available.
  print('${e.statusCode}: ${e.message} (retryable: ${e.isRetryable})');
}

Flutter Chat UI #

dart pub add ai_sdk_dart ai_sdk_openai ai_sdk_flutter_ui
import 'package:ai_sdk_dart/ai_sdk_dart.dart';
import 'package:ai_sdk_openai/ai_sdk_openai.dart';
import 'package:ai_sdk_flutter_ui/ai_sdk_flutter_ui.dart';

final agent = ToolLoopAgent(
  model: openai('gpt-4.1-mini'),
  instructions: 'You are a helpful assistant.',
);
final chat = ChatController();

// In your widget โ€” a complete chat surface:
AiChatScaffold(controller: chat, agent: agent);

Do not ship long-lived provider API keys inside distributed browser, mobile, or desktop clients. Use a trusted proxy or backend-minted short-lived credentials instead. The Flutter examples below use --dart-define for local development and smoke testing, not as a production secret-distribution strategy.


๐Ÿค– Providers #

Capability OpenAI Anthropic Google Azure Cohere Groq Mistral Ollama
Text generation โœ… โœ… โœ… โœ… โœ… โœ… โœ… โœ…
Streaming โœ… โœ… โœ… โœ… โœ… โœ… โœ… โœ…
Structured output โœ… โœ… โœ… โœ… โœ… โœ… โœ… โœ…
Native JSON schema output โœ… โ€” โ€” โœ… โ€” โœ… โœ… โ€”
Tool use โœ… โœ… โœ… โœ… โœ… โœ… โœ… โœ…
Embeddings โœ… โ€” โœ… โœ… โœ… โ€” โœ… โœ…
Reranking โ€” โ€” โ€” โ€” โœ… โ€” โ€” โ€”
Image generation โœ… โ€” โ€” โ€” โ€” โ€” โ€” โ€”
Speech synthesis โœ… โ€” โ€” โ€” โ€” โ€” โ€” โ€”
Transcription โœ… โ€” โ€” โ€” โ€” โ€” โ€” โ€”
Extended thinking โ€” โœ… โ€” โ€” โ€” โ€” โ€” โ€”
Reasoning options โœ… โ€” โ€” โ€” โ€” โ€” โ€” โ€”
Multimodal (image input) โœ… โœ… โœ… โœ… โœ… โœ… โœ… โœ…

๐Ÿ› ๏ธ Flutter UI #

The ai_sdk_flutter_ui package provides three reactive controllers plus a library of 19 prebuilt, themeable Material widgets โ€” so you can wire up a full chat UI in a few lines, or drop down to the controllers and render everything yourself.

Drop-in chat UI #

import 'package:ai_sdk_dart/ai_sdk_dart.dart';
import 'package:ai_sdk_flutter_ui/ai_sdk_flutter_ui.dart';

final agent = ToolLoopAgent(model: openai('gpt-4.1-mini'));
final chat = ChatController();

// A complete message list + composer, wired to the controller + agent:
AiChatScaffold(controller: chat, agent: agent);

Other widgets โ€” ChatMessageList, ChatMessageBubble, ChatComposer, StreamingTextView, TypingIndicator, ToolCallCard, ToolApprovalCard, ReasoningView, SourceCitations, UsageView, PromptSuggestions, ObjectStreamView, and more โ€” can be composed ร  la carte. They read only the controllers' public state, so they work with any state-management approach.

ChatController โ€” Multi-turn streaming chat #

final agent = ToolLoopAgent(model: openai('gpt-4.1-mini'));
final chat = ChatController();

// In your widget:
ListenableBuilder(
  listenable: chat,
  builder: (context, _) {
    return Column(
      children: [
        for (final msg in chat.messages)
          Text('${msg.role}: ${msg.content}'),
        if (chat.isLoading) const CircularProgressIndicator(),
      ],
    );
  },
);

// Send a message:
await chat.sendMessage(agent: agent, text: 'What is the capital of France?');

CompletionController โ€” Single-turn completion #

final completion = CompletionController(
  agent: ToolLoopAgent(model: openai('gpt-4.1-mini')),
);
await completion.complete('Write a haiku about Dart.');
print(completion.completion);

ObjectStreamController โ€” Streaming typed JSON #

final controller = ObjectStreamController<Map<String, dynamic>>(
  model: openai('gpt-4.1-mini'),
  schema: Schema<Map<String, dynamic>>(
    jsonSchema: const {'type': 'object'},
    fromJson: (json) => json,
  ),
);
await controller.submit('Describe Japan as a JSON object.');
print(controller.value); // Partial updates arrive in real-time

๐Ÿ”Œ MCP Support #

Connect to any Model Context Protocol server and use its tools directly in your AI calls:

import 'package:ai_sdk_dart/ai_sdk_dart.dart';
import 'package:ai_sdk_mcp/ai_sdk_mcp.dart';
import 'package:ai_sdk_openai/ai_sdk_openai.dart';

final client = MCPClient(
  transport: StreamableHttpClientTransport(
    url: Uri.parse('http://localhost:3000/mcp'),
    headers: {'Authorization': 'Bearer <short-lived-token>'},
  ),
);

await client.initialize();
final tools = await client.tools(); // Returns a ToolSet

final result = await generateText(
  model: openai('gpt-4.1-mini'),
  prompt: 'What files are in the project?',
  tools: tools,
  maxSteps: 5,
);

For stdio-based MCP servers (local processes):

final client = MCPClient(
  transport: StdioMCPTransport(
    command: 'npx',
    args: ['-y', '@modelcontextprotocol/server-filesystem', '/path/to/dir'],
  ),
);

StreamableHttpClientTransport speaks the MCP Streamable HTTP transport (2025-06-18) against a single endpoint. It negotiates the protocol version during initialize(), sends notifications/initialized, accepts JSON or SSE responses to each POST, starts the optional GET SSE listener for server-pushed notifications, reconnects that listener with Last-Event-ID, and sends DELETE on shutdown when the server assigned Mcp-Session-Id. Put required auth or routing headers in headers, but avoid embedding long-lived secrets in shipped browser or mobile clients. The HTTP transport is web-safe โ€” dart:io is only pulled in by StdioMCPTransport on native platforms, behind a conditional import โ€” so the client also runs on Flutter web.


๐Ÿ—บ๏ธ Roadmap #

โœ… Implemented #

  • โœ… generateText โ€” full result envelope (text, steps, usage, reasoning, sources, files)
  • โœ… streamText โ€” complete event taxonomy (20 typed event types), onAbort callback
  • โœ… generateObject / structured output (object, array, choice, json) with native JSON schema
  • โœ… embed / embedMany + cosineSimilarity, wrapEmbeddingModel
  • โœ… generateImage (OpenAI gpt-image-1 / DALLยทE)
  • โœ… generateSpeech (OpenAI TTS)
  • โœ… transcribe (OpenAI Whisper)
  • โœ… rerank
  • โœ… timeout parameter on all core functions
  • โœ… customProvider() for lightweight on-the-fly provider construction
  • โœ… Middleware system โ€” 5 built-in language-model middlewares, plus embedding & image model middleware
  • โœ… Provider registry (createProviderRegistry) โ€” 6 model categories
  • โœ… Multi-step agentic loops with tool approval
  • โœ… Flutter UI controllers (Chat, Completion, ObjectStream) + 19 prebuilt Material widgets
  • โœ… MCP client (Streamable HTTP + stdio transports, prompts, resources, web-safe)
  • โœ… Typed provider API errors (AiApiCallError with status / type / code / body) across all providers
  • โœ… OpenAI (with reasoning options), Anthropic (with thinking options), Google providers
  • โœ… Cohere, Mistral, Groq, Ollama, Azure OpenAI providers โ€” all with tools + multimodal
  • โœ… Comprehensive tests with a repository-wide 99% line-coverage gate

๐Ÿ”œ Planned #

  • ๐Ÿ”œ Streaming MCP tool outputs
  • ๐Ÿ”œ Richer attachment widgets (file/image pickers, audio capture)
  • ๐Ÿ”œ Dart Edge / Cloudflare Workers support
  • ๐Ÿ”œ WebSocket transport for MCP

๐Ÿค Contributing #

Contributions are welcome! Please open an issue first to discuss changes before submitting a PR.

Running tests #

fvm dart pub get
make test
make analyze

Or run a smaller set of pinned toolchain smoke checks directly:

fvm dart analyze .
fvm dart test packages/ai_sdk_dart/test/
fvm dart test packages/ai_sdk_openai/test/
fvm dart test packages/ai_sdk_anthropic/test/
fvm dart test packages/ai_sdk_google/test/
fvm flutter test examples/flutter_chat/
fvm flutter test examples/advanced_app/

Runnable examples #

CLI and server examples can read credentials from the process environment. The repo make targets forward those values to the provider factories as compile-time defines when needed:

OPENAI_API_KEY=sk-... make run-basic
OPENAI_API_KEY=sk-... make run-mcp

Equivalent direct Dart invocation:

OPENAI_API_KEY=sk-... \
  fvm dart run --define=OPENAI_API_KEY=sk-... examples/basic/lib/main.dart

Flutter example apps are different: they read compile-time defines from String.fromEnvironment, so pass keys with --dart-define:

fvm flutter run -C examples/flutter_chat \
  --dart-define=OPENAI_API_KEY=sk-...

fvm flutter run -C examples/advanced_app \
  --dart-define=OPENAI_API_KEY=sk-... \
  --dart-define=ANTHROPIC_API_KEY=sk-ant-... \
  --dart-define=GOOGLE_API_KEY=AIza...

The Flutter commands above compile the keys into the client app. Use them for local demos only. Production apps should call a trusted backend or fetch short-lived provider credentials instead of embedding long-lived secrets.

Example Command What it shows
Dart CLI OPENAI_API_KEY=sk-... make run-basic generateText, streaming, structured output, tools, embeddings, middleware
Flutter chat cd examples/flutter_chat && fvm flutter run --dart-define=OPENAI_API_KEY=sk-... ChatController, CompletionController, ObjectStreamController
Flutter chat (web) cd examples/flutter_chat && fvm flutter run -d chrome --dart-define=OPENAI_API_KEY=sk-... Same as above on Chrome
Advanced app cd examples/advanced_app && fvm flutter run --dart-define=OPENAI_API_KEY=sk-... --dart-define=ANTHROPIC_API_KEY=sk-ant-... --dart-define=GOOGLE_API_KEY=AIza... All providers, tools, image gen, TTS, STT, multimodal, embeddings, completion, object stream + widget gallery
Advanced app (web) cd examples/advanced_app && fvm flutter run -d chrome --dart-define=OPENAI_API_KEY=sk-... --dart-define=ANTHROPIC_API_KEY=sk-ant-... --dart-define=GOOGLE_API_KEY=AIza... Same as above on Chrome
MCP demo make run-mcp MCP tool discovery + direct tool calls (works without an API key)

Development #

Managed with Melos as a monorepo workspace:

fvm dart pub get
make analyze
make test

See docs/v6-parity-matrix.md for a feature-by-feature parity matrix against Vercel AI SDK v6.


๐Ÿ“„ License #

MIT

0
likes
160
points
244
downloads

Documentation

API reference

Publisher

verified publisherhashstudios.dev

Weekly Downloads

Core AI SDK for Dart with provider-agnostic model APIs.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

ai_sdk_provider, collection, dio, freezed_annotation, json_annotation, meta

More

Packages that depend on ai_sdk_dart