ai-sdk-ollama
v3.8.0
Published
Vercel AI SDK Provider for Ollama using official ollama-js library
Downloads
82,770
Maintainers
Readme
AI SDK Ollama Provider
A Vercel AI SDK v6 provider for Ollama built on the official ollama package. Type safe, future proof, with cross provider compatibility and native Ollama features.
📌 Version Compatibility: This version (v3+) requires AI SDK v6. If you're using AI SDK v5, please use
ai-sdk-ollama@^2.0.0instead.
Quick Start
npm install ai-sdk-ollama ai@^6.0.0import { ollama } from 'ai-sdk-ollama';
import { generateText } from 'ai';
// Works in both Node.js and browsers
const { text } = await generateText({
model: ollama('llama3.2'),
prompt: 'Write a haiku about coding',
temperature: 0.8,
});
console.log(text);Why Choose AI SDK Ollama?
- ✅ Solves tool calling problems - Response synthesis for reliable tool execution
- ✅ Enhanced wrapper functions -
generateTextandstreamTextguarantees complete responses - ✅ Built-in reliability - Default reliability features enabled automatically
- ✅ Automatic JSON repair - Cascade repair: jsonrepair first, then Ollama-specific fallback (trailing commas, comments, URLs, Python constants, etc.)
- ✅ Web search and fetch tools - Built-in web search and fetch tools powered by Ollama's web search API. Perfect for getting current information and reducing hallucinations.
- ✅ Type-safe - Full TypeScript support with strict typing
- ✅ Cross-environment - Works in Node.js and browsers automatically
- ✅ Native Ollama power - Access advanced features like
mirostat,repeat_penalty,num_ctx - ✅ Production ready - Handles the core Ollama limitations other providers struggle with
Enhanced Tool Calling
🚀 The Problem We Solve: Standard Ollama providers often execute tools but return empty responses. Our enhanced functions guarantee complete, useful responses every time.
import { ollama, generateText, streamText } from 'ai-sdk-ollama';
// ✅ Enhanced generateText - guaranteed complete responses
const { text } = await generateText({
model: ollama('llama3.2'),
tools: {
/* your tools */
},
prompt: 'Use the tools and explain the results',
});
// ✅ Enhanced streaming - tool-aware streaming
const { textStream } = await streamText({
model: ollama('llama3.2'),
tools: {
/* your tools */
},
prompt: 'Stream with tools',
});Web Search Tools
🌐 New in v0.9.0: Built-in web search and fetch tools powered by Ollama's web search API. Perfect for getting current information and reducing hallucinations.
import { generateText } from 'ai';
import { ollama } from 'ai-sdk-ollama';
// 🔍 Web search for current information
const { text } = await generateText({
model: ollama('qwen3-coder:480b-cloud'), // Cloud models recommended for web search
prompt: 'What are the latest developments in AI this week?',
tools: {
webSearch: ollama.tools.webSearch({ maxResults: 5 }),
},
});
// 📄 Fetch specific web content
const { text: summary } = await generateText({
model: ollama('gpt-oss:120b-cloud'),
prompt: 'Summarize this article: https://example.com/article',
tools: {
webFetch: ollama.tools.webFetch({ maxContentLength: 5000 }),
},
});
// 🔄 Combine search and fetch for comprehensive research
const { text: research } = await generateText({
model: ollama('gpt-oss:120b-cloud'),
prompt: 'Research recent TypeScript updates and provide a detailed analysis',
tools: {
webSearch: ollama.tools.webSearch({ maxResults: 3 }),
webFetch: ollama.tools.webFetch(),
},
});Web Search Prerequisites
- Ollama API Key: Set
OLLAMA_API_KEYenvironment variable - Cloud Models: Use cloud models for optimal web search performance:
qwen3-coder:480b-cloud- Best for general web searchgpt-oss:120b-cloud- Best for complex reasoning with web data
# Set your API key
export OLLAMA_API_KEY="your_api_key_here"
# Get your API key from: https://ollama.com/accountContents
- AI SDK Ollama Provider
import { ollama } from 'ai-sdk-ollama';
import { generateText } from 'ai';
// Standard AI SDK parameters work everywhere
const { text } = await generateText({
model: ollama('llama3.2'),
prompt: 'Write a haiku about coding',
temperature: 0.8,
maxOutputTokens: 100,
});
// Plus access to Ollama's advanced features
const { text: advancedText } = await generateText({
model: ollama('llama3.2', {
options: {
mirostat: 2, // Advanced sampling algorithm
repeat_penalty: 1.1, // Fine-tune repetition
num_ctx: 8192, // Larger context window
},
}),
prompt: 'Write a haiku about coding',
temperature: 0.8, // Standard parameters still work
});Prerequisites
- Node.js 22+
- Ollama installed locally or running on a remote server
- AI SDK v6 (
aipackage) - TypeScript 5.9+ (for TypeScript users)
# Install Ollama from ollama.com
ollama serve
# Pull a model
ollama pull llama3.2Browser Support
See the browser example.
This provider works in both Node.js and browser environments. The library automatically selects the correct Ollama client based on the environment.
Browser Usage
The same API works in browsers with automatic environment detection:
import { ollama } from 'ai-sdk-ollama'; // Automatically uses browser version
import { generateText } from 'ai';
const { text } = await generateText({
model: ollama('llama3.2'),
prompt: 'Write a haiku about coding',
});Explicit Browser Import
You can also explicitly import the browser version:
import { ollama } from 'ai-sdk-ollama/browser';CORS Configuration
For browser usage, you have several options to handle CORS:
# Option 1: Use a proxy (recommended for development)
# Configure your bundler (Vite, Webpack, etc.) to proxy /api/* to Ollama
# See browser example for Vite proxy configuration
# Option 2: Allow all origins (development only)
OLLAMA_ORIGINS=* ollama serve
# Option 3: Allow specific origins
OLLAMA_ORIGINS="http://localhost:3000,https://myapp.com" ollama serveRecommended: Use a development proxy (like Vite proxy) to avoid CORS issues entirely. See the browser example for a complete working setup.
More Examples
Cross Provider Compatibility
Write code that works with any AI SDK provider:
// This exact code works with OpenAI, Anthropic, or Ollama
const { text } = await generateText({
model: ollama('llama3.2'), // or openai('gpt-4') or anthropic('claude-3')
prompt: 'Write a haiku',
temperature: 0.8,
maxOutputTokens: 100,
topP: 0.9,
});Native Ollama Power
Access Ollama's advanced features without losing portability:
const { text } = await generateText({
model: ollama('llama3.2', {
options: {
mirostat: 2, // Advanced sampling algorithm
repeat_penalty: 1.1, // Repetition control
num_ctx: 8192, // Context window size
},
}),
prompt: 'Write a haiku',
temperature: 0.8, // Standard parameters still work
});Parameter Precedence: When both AI SDK parameters and Ollama options are specified, Ollama options take precedence. For example, if you set
temperature: 0.5in Ollama options andtemperature: 0.8in thegenerateTextcall, the final value will be0.5. This allows you to use standard AI SDK parameters for portability while having fine-grained control with Ollama-specific options when needed.
Model Keep-Alive Control
Control how long models stay loaded in memory after requests using the keep_alive parameter:
// Keep model loaded for 10 minutes
const model = ollama('llama3.2', { keep_alive: '10m' });
// Keep model loaded for 1 hour (3600 seconds)
const model2 = ollama('llama3.2', { keep_alive: 3600 });
// Keep model loaded indefinitely
const model3 = ollama('llama3.2', { keep_alive: -1 });
// Unload model immediately after each request
const model4 = ollama('llama3.2', { keep_alive: 0 });
const { text } = await generateText({
model,
prompt: 'Write a haiku',
});Accepted values:
- Duration strings:
"10m","24h","30s"(minutes, hours, seconds) - Numbers: seconds as a number (e.g.,
3600for 1 hour) - Negative numbers: keep loaded indefinitely (e.g.,
-1) 0: unload immediately after the request
Default behavior: If not specified, Ollama keeps models loaded for 5 minutes to facilitate quicker response times for subsequent requests.
Enhanced Tool Calling Wrappers
For maximum tool calling reliability, use our enhanced wrapper functions that guarantee complete responses:
import { ollama, generateText, streamText } from 'ai-sdk-ollama';
import { tool } from 'ai';
import { z } from 'zod';
// Enhanced generateText with automatic response synthesis
const result = await generateText({
model: ollama('llama3.2'),
prompt: 'What is 15 + 27? Use the math tool to calculate it.',
tools: {
math: tool({
description: 'Perform math calculations',
inputSchema: z.object({
operation: z.string().describe('Math operation like "15 + 27"'),
}),
execute: async ({ operation }) => {
return { result: eval(operation), operation };
},
}),
},
// Optional: Configure reliability behavior
enhancedOptions: {
enableSynthesis: true, // Default: true
maxSynthesisAttempts: 2, // Default: 2
minResponseLength: 10, // Default: 10
},
});
console.log(result.text); // "15 + 27 equals 42. Using the math tool, I calculated..."Combining Tools with Structured Output
The enableToolsWithStructuredOutput option allows you to use both tool calling and structured output together:
import { ollama, generateText } from 'ai-sdk-ollama';
import { Output, tool } from 'ai';
import { z } from 'zod';
const weatherTool = tool({
description: 'Get current weather for a location',
inputSchema: z.object({
location: z.string().describe('City name'),
}),
execute: async ({ location }) => ({
location,
temperature: 22,
condition: 'sunny',
humidity: 60,
}),
});
// AI SDK v6: tools and structured output work together by default
import { ollama } from 'ai-sdk-ollama';
const result = await generateText({
model: ollama('llama3.2'),
prompt: 'Get weather for San Francisco and provide a structured summary',
tools: { getWeather: weatherTool },
output: Output.object({
schema: z.object({
location: z.string(),
temperature: z.number(),
summary: z.string(),
}),
}),
toolChoice: 'required',
});
// Result: Tool is called AND structured output is generatedWhen to Use Enhanced Wrappers:
- Critical tool calling scenarios where you need guaranteed text responses
- Production applications that can't handle empty responses after tool execution
- Complex multi-step tool interactions requiring reliable synthesis
Standard vs Enhanced Comparison:
| Function | Standard generateText | Enhanced generateText |
| -------------------------- | ------------------------- | ------------------------------------ |
| Simple prompts | ✅ Perfect | ✅ Works (slight overhead) |
| Tool calling | ⚠️ May return empty text | ✅ Guarantees complete responses |
| Complete responses | ❌ Manual handling needed | ✅ Automatic completion |
| Production reliability | ⚠️ Unpredictable | ✅ Reliable |
Simple and Predictable
The provider works the same way with any model - just try the features you need:
// No capability checking required - just use any model
const { text } = await generateText({
model: ollama('any-model'),
prompt: 'What is the weather?',
tools: {
/* ... */
}, // If the model doesn't support tools, you'll get a clear error
});
// The provider is simple and predictable
// - Try any feature with any model
// - Get clear error messages if something doesn't work
// - No hidden complexity or capability detectionReranking
AI SDK v6 Feature: Rerank documents by semantic relevance to improve search results and RAG pipelines.
Since Ollama doesn't have native reranking yet, we provide embedding-based reranking using cosine similarity:
import { rerank } from 'ai';
import { ollama } from 'ai-sdk-ollama';
// Rerank documents by relevance to a query
const { ranking, rerankedDocuments } = await rerank({
model: ollama.embeddingReranking('nomic-embed-text'),
query: 'How do I get a refund?',
documents: [
'To reset your password, click Forgot Password on the login page.',
'Refunds are available within 14 days of purchase. Go to Settings > Cancel Plan.',
'Enable 2FA for extra security in Settings > Security.',
],
topN: 2, // Return top 2 most relevant
});
console.log('Most relevant:', rerankedDocuments[0]);
// Output: "Refunds are available within 14 days..."
// Each ranking item includes score and original index
ranking.forEach((item, i) => {
console.log(
`${i + 1}. Score: ${item.score.toFixed(3)}, Index: ${item.originalIndex}`,
);
});Use Cases:
- RAG Pipelines: Rerank retrieved documents before passing to LLM
- Search Results: Improve relevance of search results
- Customer Support: Find most relevant help articles
Recommended Models: embeddinggemma (best score separation), nomic-embed-text, bge-m3
Streaming Utilities
Smooth Stream
Create smoother streaming output by chunking text into words, lines, or custom patterns:
import { ollama } from 'ai-sdk-ollama';
import { streamText, smoothStream } from 'ai';
// Word-by-word streaming with delay
const result = streamText({
model: ollama('llama3.2'),
prompt: 'Write a poem about the ocean.',
experimental_transform: smoothStream({
delayInMs: 50, // 50ms between chunks
chunking: 'word', // 'word' | 'line' | RegExp
}),
});
for await (const chunk of result.textStream) {
process.stdout.write(chunk); // Smooth, word-by-word output
}Chunking Options:
'word'- Emit word by word (default)'line'- Emit line by lineRegExp- Custom pattern (e.g.,/[.!?]\s+/for sentences)
Partial JSON Parsing
Parse incomplete JSON from streaming responses - useful for progressive UI updates:
import { parsePartialJson } from 'ai';
// As JSON streams in, parse what's available
const partial = '{"name": "Alice", "age": 25, "city": "New';
const result = await parsePartialJson(partial);
if (result.state === 'repaired-parse' || result.state === 'successful-parse') {
console.log(result.value); // { name: "Alice", age: 25, city: "New" }
}Note: createStitchableStream and other advanced stream utilities are internal to the AI SDK. Use standard ReadableStream APIs for stream manipulation, or import utilities directly from 'ai' when available.
Middleware System
Wrap language models with middleware for parameter transformation, logging, or custom behavior:
import {
ollama,
wrapLanguageModel,
defaultSettingsMiddleware,
} from 'ai-sdk-ollama';
import { generateText } from 'ai';
// Apply default settings to all calls
const model = wrapLanguageModel({
model: ollama('llama3.2'),
middleware: defaultSettingsMiddleware({
settings: {
temperature: 0.7,
maxOutputTokens: 1000,
},
}),
});
// Temperature and maxOutputTokens are now applied by default
const { text } = await generateText({
model,
prompt: 'Write a story.',
});Default Settings Middleware
Apply default parameters that can be overridden per-call:
import { defaultSettingsMiddleware } from 'ai-sdk-ollama';
const middleware = defaultSettingsMiddleware({
settings: {
temperature: 0.7,
maxOutputTokens: 500,
},
});Extract Reasoning Middleware
Extract reasoning/thinking from model outputs that use XML tags:
import {
ollama,
wrapLanguageModel,
extractReasoningMiddleware,
} from 'ai-sdk-ollama';
const model = wrapLanguageModel({
model: ollama('deepseek-r1:7b'),
middleware: extractReasoningMiddleware({
tagName: 'think', // Extract content from <think> tags
separator: '\n', // Separator for multiple reasoning blocks
startWithReasoning: true, // Model starts with reasoning
}),
});Combining Multiple Middlewares:
const model = wrapLanguageModel({
model: ollama('llama3.2'),
middleware: [
defaultSettingsMiddleware({ settings: { temperature: 0.5 } }),
extractReasoningMiddleware({ tagName: 'thinking' }),
],
});ToolLoopAgent
An agent that runs tools in a loop until a stop condition is met:
import { ollama } from 'ai-sdk-ollama';
import { ToolLoopAgent, stepCountIs, hasToolCall, tool } from 'ai';
import { z } from 'zod';
const agent = new ToolLoopAgent({
model: ollama('llama3.2'),
instructions: 'You are a helpful assistant.',
tools: {
weather: tool({
description: 'Get weather for a location',
inputSchema: z.object({ location: z.string() }),
execute: async ({ location }: { location: string }) => ({
temp: 72,
condition: 'sunny',
}),
}),
done: tool({
description: 'Call when task is complete',
inputSchema: z.object({ summary: z.string() }),
execute: async ({ summary }: { summary: string }) => ({
completed: true,
summary,
}),
}),
},
maxOutputTokens: 1000,
stopWhen: [
stepCountIs(10), // Stop after 10 steps max
hasToolCall('done'), // Stop when 'done' tool is called
],
onStepFinish: (stepResult) => {
console.log(`Step:`, stepResult.toolCalls.length, 'tool calls');
},
});
const result = await agent.generate({
prompt: 'What is the weather in San Francisco?',
});
console.log('Final:', result.text);
console.log('Steps:', result.steps.length);
console.log('Tokens:', result.totalUsage.totalTokens ?? 'undefined');Stop Conditions:
stepCountIs(n)- Stop after n stepshasToolCall(name)- Stop when specific tool is called- Custom:
(options: { steps: StepResult[] }) => boolean | Promise<boolean>
Advanced Features
Custom Ollama Instance
You can create a custom Ollama provider instance with specific configuration:
import { createOllama } from 'ai-sdk-ollama';
import { generateText } from 'ai';
const ollama = createOllama({
baseURL: 'http://my-ollama-server:11434',
headers: {
'Custom-Header': 'value',
},
});
const { text } = await generateText({
model: ollama('llama3.2'),
prompt: 'Hello!',
});API Key Configuration
For cloud Ollama services, pass your API key explicitly using createOllama:
import { createOllama } from 'ai-sdk-ollama';
import { generateText } from 'ai';
const ollama = createOllama({
apiKey: process.env.OLLAMA_API_KEY,
baseURL: 'https://ollama.com',
});
const { text } = await generateText({
model: ollama('llama3.2'),
prompt: 'Hello!',
});Why explicit over auto-detection?
Different runtimes handle environment variables differently:
| Runtime | .env Auto-Loading |
| --------------- | ----------------------------- |
| Node.js | ❌ No (requires dotenv) |
| Bun | ✅ Yes (usually) |
| Deno | ❌ No |
| Edge/Serverless | ❌ No (platform injects vars) |
Passing apiKey explicitly works reliably everywhere and avoids surprises.
Runtime-specific examples:
// Node.js (with dotenv)
import 'dotenv/config';
const ollama = createOllama({ apiKey: process.env.OLLAMA_API_KEY });
// Bun
const ollama = createOllama({ apiKey: Bun.env.OLLAMA_API_KEY });
// Deno
const ollama = createOllama({ apiKey: Deno.env.get('OLLAMA_API_KEY') });
// Production (Vercel, Railway, Fly.io, etc.)
// Env vars are injected by the platform - no .env files needed
const ollama = createOllama({ apiKey: process.env.OLLAMA_API_KEY });Note: The API key is set as Authorization: Bearer {apiKey} header. If you provide both an apiKey and a pre-existing Authorization header, the existing header takes precedence.
Using Existing Ollama Client
You can also pass an existing Ollama client instance to reuse your configuration:
import { Ollama } from 'ollama';
import { createOllama } from 'ai-sdk-ollama';
// Create your existing Ollama client
const existingClient = new Ollama({
host: 'http://my-ollama-server:11434',
// Add any custom configuration
});
// Use it with the AI SDK provider
const ollamaSdk = createOllama({ client: existingClient });
// Use both clients as needed
await ollamaRaw.list(); // Direct Ollama operations
const { text } = await generateText({
model: ollamaSdk('llama3.2'),
prompt: 'Hello!',
});Structured Output
import { generateText, Output } from 'ai';
import { z } from 'zod';
// Auto-detection: structuredOutputs is automatically enabled for object generation
const { output } = await generateText({
model: ollama('llama3.2'), // No need to set structuredOutputs: true
output: Output.object({
schema: z.object({
name: z.string(),
age: z.number(),
interests: z.array(z.string()),
}),
}),
prompt: 'Generate a random person profile',
});
console.log(output);
// { name: "Alice", age: 28, interests: ["reading", "hiking"] }
// Explicit setting still works
const { output: explicitOutput } = await generateText({
model: ollama('llama3.2', { structuredOutputs: true }), // Explicit
output: Output.object({
schema: z.object({
name: z.string(),
age: z.number(),
}),
}),
prompt: 'Generate a person',
});Auto-Detection of Structured Outputs
The provider automatically detects when structured outputs are needed:
- Object Generation:
generateTextwithOutput.object()andstreamTextwithOutput.object()automatically enablestructuredOutputs: true - Text Generation:
generateTextandstreamTextrequire explicitstructuredOutputs: truefor JSON output - Backward Compatibility: Explicit settings are respected, with warnings when overridden
- No Breaking Changes: Existing code continues to work as expected
import { ollama } from 'ai-sdk-ollama';
import { generateText, Output } from 'ai';
import { z } from 'zod';
// This works without explicit structuredOutputs: true
const { output } = await generateText({
model: ollama('llama3.2'),
output: Output.object({
schema: z.object({ name: z.string() }),
}),
prompt: 'Generate a name',
});
// This still requires explicit setting for JSON output
const { text } = await generateText({
model: ollama('llama3.2', { structuredOutputs: true }),
prompt: 'Generate JSON with a message field',
});Automatic JSON Repair
🔧 Enhanced Reliability: Built-in cascade repair automatically fixes malformed LLM outputs for object generation.
Repair uses a cascade: the jsonrepair library runs first (standard JSON issues), then the built-in Ollama-specific repair runs if needed (e.g. Python True/None, URLs with //, smart quotes). You can use the default, disable repair with enableTextRepair: false, or pass a custom repairText function. Exported helpers: cascadeRepairText, enhancedRepairText (see test-cascade-repair example).
The provider handles 14+ types of common JSON issues from LLM outputs:
import { ollama } from 'ai-sdk-ollama';
import { generateText, Output } from 'ai';
import { z } from 'zod';
// JSON repair is enabled by default for all object generation
const { output } = await generateText({
model: ollama('llama3.2'),
output: Output.object({
schema: z.object({
name: z.string(),
email: z.string().email(),
age: z.number(),
}),
}),
prompt: 'Generate a person profile',
// reliableObjectGeneration: true is the default
});
// Automatically handles:
// ✅ Trailing commas: {"name": "John",}
// ✅ Single quotes: {'name': 'John'}
// ✅ Unquoted keys: {name: "John"}
// ✅ Python constants: {active: True, value: None}
// ✅ Comments: {"name": "John" // comment}
// ✅ URLs in strings: {"url": "https://example.com" // comment}
// ✅ Escaped quotes: {"text": "It's // fine"}
// ✅ JSONP wrappers: callback({"name": "John"})
// ✅ Markdown code blocks: ```json\n{...}\n```
// ✅ Incomplete objects/arrays
// ✅ Smart quotes and special characters
// ✅ And more...Control Options:
// Disable all reliability features (not recommended)
const { output } = await generateText({
model: ollama('llama3.2', {
reliableObjectGeneration: false, // Everything off
}),
output: Output.object({
schema: z.object({ message: z.string() }),
}),
prompt: 'Generate a message',
});
// Fine-grained control: disable only repair, keep retries
const { output: withRetries } = await generateText({
model: ollama('llama3.2', {
reliableObjectGeneration: true,
objectGenerationOptions: {
enableTextRepair: false, // Disable repair only
maxRetries: 3, // But keep retries
},
}),
output: Output.object({
schema: z.object({ message: z.string() }),
}),
prompt: 'Generate a message',
});
// Custom repair function (advanced)
const { output: custom } = await generateText({
model: ollama('llama3.2', {
objectGenerationOptions: {
repairText: async ({ text, error }) => {
// Your custom repair logic
return text.replace(/,(\s*[}\]])/g, '$1');
},
},
}),
output: Output.object({
schema: z.object({ message: z.string() }),
}),
prompt: 'Generate a message',
});Reasoning Support
Some models like DeepSeek-R1 support reasoning (chain-of-thought) output. Enable this feature to see the model's thinking process:
import { ollama } from 'ai-sdk-ollama';
import { generateText } from 'ai';
// Enable reasoning for models that support it (e.g., deepseek-r1:7b)
const model = ollama('deepseek-r1:7b', { reasoning: true });
// Generate text with reasoning
const { text } = await generateText({
model,
prompt:
'Solve: If I have 3 boxes, each with 4 smaller boxes, and each smaller box has 5 items, how many items total?',
});
console.log('Answer:', text);
// DeepSeek-R1 includes reasoning in the output with <think> tags:
// <think>
// First, I'll calculate the number of smaller boxes: 3 × 4 = 12
// Then, the total items: 12 × 5 = 60
// </think>
// You have 60 items in total.
// Compare with reasoning disabled
const modelNoReasoning = ollama('deepseek-r1:7b', { reasoning: false });
const { text: noReasoningText } = await generateText({
model: modelNoReasoning,
prompt: 'Calculate 3 × 4 × 5',
});
// Output: 60 (without showing the thinking process)Recommended Reasoning Models:
deepseek-r1:7b- Balanced performance and reasoning capability (5GB)deepseek-r1:1.5b- Lightweight option (2.5GB)deepseek-r1:8b- Llama-based distilled version (5.5GB)
Install with: ollama pull deepseek-r1:7b
Note: The reasoning feature is model-dependent. Models without reasoning support will work normally without showing thinking process.
Common Issues
- Make sure Ollama is running - Run
ollama servebefore using the provider - Pull models first - Use
ollama pull model-namebefore generating text - Model compatibility errors - The provider will throw errors if you try to use unsupported features (e.g., tools with non-compatible models)
- Network issues - Verify Ollama is accessible at the configured URL
- TypeScript support - Full type safety with TypeScript 5.9+
- AI SDK v6 compatibility - Built for the latest AI SDK specification
Supported Models
Works with any model in your Ollama installation:
- Chat:
llama3.2,mistral,phi4-mini,qwen2.5,codellama,gpt-oss:20b - Vision:
llava,bakllava,llama3.2-vision,minicpm-v - Embeddings:
nomic-embed-text,all-minilm,mxbai-embed-large - Reasoning:
deepseek-r1:7b,deepseek-r1:1.5b,deepseek-r1:8b - Cloud Models (for web search):
qwen3-coder:480b-cloud,gpt-oss:120b-cloud
Testing
The project includes unit and integration tests:
# Run unit tests only (fast, no external dependencies)
npm test
# Run all tests (unit + integration)
npm run test:all
# Run integration tests only (requires Ollama running)
npm run test:integrationNote: Integration tests may occasionally fail due to the non-deterministic nature of AI model outputs. This is expected behavior - the tests use loose assertions to account for LLM output variability. Some tests may also skip if required models aren't available locally.
For detailed testing information, see Integration Tests Documentation.
Learn More
📚 Examples Directory - Comprehensive usage patterns with real working code
🚀 Quick Start Guide - Get running in 2 minutes
⚙️ Dual Parameters Demo - See the key feature in action
🔧 Tool Calling Guide - Function calling with Ollama
🖼️ Image Processing Guide - Vision models with LLaVA
📡 Streaming Examples - Real-time responses
🌐 Web Search Tools - Web search and fetch capabilities
🔄 Reranking Example - Document reranking with embeddings
🌊 SmoothStream Example - Smooth chunked streaming output
🔌 Middleware Example - Model wrapping and middleware system
🤖 ToolLoopAgent Example - Autonomous tool-calling agents
🛡️ Tool Approval Example - Human-in-the-loop tool execution approval
📦 Structured Output + Tools - Tool calling with structured output generation
🔗 MCP Tools Example - Model Context Protocol integration
🔧 JSON repair example - Object generation with repair options and custom repair
🔀 Cascade repair example - cascadeRepairText and enhancedRepairText (jsonrepair + Ollama-specific)
License
MIT © Jag Reehal
See LICENSE for details.
