Build AI features the Ruby way
The Ruby-native AI framework. Build with chats, tools, agents, images, audio, and video through one consistent API, in plain Ruby or Rails.
Note
Using RubyLLM? Share your story! Takes 5 minutes.
Work with OpenAI, xAI, Anthropic, Google, AWS, local models, and more. Seventeen providers are built in, and you can connect an OpenAI-compatible endpoint directly.
demo.mp4
Use the same Ruby methods across providers. Add files to a conversation, give an agent tools, generate media, or build a search feature with embeddings and reranking. Read response text, generated files, and usage through Ruby objects.
In Rails, the API works on your own Chat and Message records, with Active Storage attachments, Hotwire streaming, and background jobs. RubyLLM maintains the supporting model registry, tool calls, usage ledger, and batches. A handful of small dependencies keeps it easy to bring into an existing application.
These examples use 2.0.0.rc2. Follow Getting Started to install it and configure the providers you want to try.
# Just ask questions
chat = RubyLLM.chat
chat.ask "What's the best way to learn Ruby?"# Ask about files with a model that supports their input types
chat = RubyLLM.chat(model: "gemini-3.7-flash")
chat.ask "What's in this image?", with: "ruby_conf.jpg"
chat.ask "What's happening in this video?", with: "video.mp4"
chat.ask "Describe this meeting", with: "meeting.wav"
chat.ask "Summarize this document", with: "contract.pdf"
chat.ask "Explain this code", with: "app.rb"# Multiple files at once
chat.ask "Analyze these files", with: ["diagram.png", "report.pdf", "notes.txt"]# Stream responses
chat.ask "Tell me a story about Ruby" do |chunk|
print chunk.content
end# Generate images
image = RubyLLM.paint "a sunset over mountains in watercolor style"
image.save "sunset.png"# Generate videos
video = RubyLLM.animate "a paper boat sailing down a rainy gutter"
video.save "paper_boat.mp4"# Create embeddings
embedding = RubyLLM.embed "Ruby is elegant and expressive"
embedding.vectors# Rank search results
documents = ["Reset your password in Settings.", "Invoices arrive by email."]
ranked = RubyLLM.rerank("How do I reset my password?", documents, model: "rerank-v3.5")
ranked.results.first.document# Transcribe audio to text
transcript = RubyLLM.transcribe "meeting.wav"
puts transcript.text# Turn text into speech
speech = RubyLLM.speak "Hello, welcome to RubyLLM!"
speech.save "welcome.mp3"# Extract document text as markdown
document = RubyLLM.ocr "contract.pdf"
puts document.markdown# Check whether a moderation model flags content
RubyLLM.moderate("Some user-generated content").flagged?# Let AI use your code
class Weather < RubyLLM::Tool
description "Get current weather"
def execute(latitude:, longitude:)
url = "https://api.open-meteo.com/v1/forecast?latitude=#{latitude}&longitude=#{longitude}¤t=temperature_2m,wind_speed_10m"
JSON.parse(Faraday.get(url).body)
end
end
chat.with_tools(Weather).ask "What's the weather in Berlin?"# Define an agent with instructions + tools
class WeatherAssistant < RubyLLM::Agent
model "gpt-5.6-luna"
instructions "Be concise and always use tools for weather."
tools Weather
end
WeatherAssistant.new.ask "What's the weather in Berlin?"# Get structured output
class ProductSchema < Schematist::Schema
string :name
number :price
array :features do
string
end
end
response = chat.with_schema(ProductSchema).ask "Analyze this product", with: "product.txt"
response.parsed- Chat: Conversational AI with
RubyLLM.chat - Vision: Analyze images and videos
- Audio: Transcribe speech with
RubyLLM.transcribeand generate it withRubyLLM.speak - Documents: Ask questions about PDFs, text files, and other supported formats
- OCR: Turn documents into markdown with
RubyLLM.ocr - Image generation: Create images with
RubyLLM.paint - Video generation: Create videos with
RubyLLM.animate - Embeddings: Generate embeddings with
RubyLLM.embed - Reranking: Order retrieval candidates by relevance with
RubyLLM.rerank - Moderation: Content flags, categories, and scores with
RubyLLM.moderate - Tools: Let AI call your Ruby methods
- Tool approval: Park a run until a human approves with
requires_approval - The agentic loop: Drive it yourself with
ask_later,step, andcomplete? - Server tools: Web search, code execution, and MCP connectors with
with_server_tools - Agents: Reusable assistants with
RubyLLM::Agent - Prompt templates: ERB prompts in
app/prompts, rendered withRubyLLM.render_prompt - Workflows: Correlate multi-agent runs in your telemetry with
RubyLLM.workflow - Structured output: Define a Ruby schema and read the result with
response.parsed - Streaming: Real-time responses with blocks
- Rails: Active Record persistence, Active Storage attachments, Hotwire streaming, and generators
- Files: Upload once and reuse across chats with
RubyLLM.upload - Prompt caching: Turn on the provider's cache with
with_cachingandcache_until_here - Fallbacks and cancellation: Retry on backup models with
with_fallbacks, stop a run withcancel - Cost tracking: A per-attempt usage ledger behind
chat.tokensandchat.cost - Async: Fiber-based concurrency
- Model registry: Browse capabilities, limits, and pricing across providers
- Extended thinking: Control, view, and persist model deliberation
- Citations: Normalized source citations from documents, search, and grounding
- Batches: Provider-side batch processing with provider-specific discounts via
RubyLLM.batch - Compaction: Let providers condense long conversations with
with_compaction - Token counting: Count a request before you send it with
count_tokens - Providers: OpenAI, Azure, xAI, Anthropic, Gemini, VertexAI, Bedrock, Cohere, DeepSeek, Mistral, Ollama, Ollama Cloud, OpenRouter, Perplexity, GPUStack, ElevenLabs, Deepgram, and any OpenAI-compatible API
Install the 2.0 release candidate:
bundle add ruby_llm --version 2.0.0.rc2Configure a provider in your script, or in config/initializers/ruby_llm.rb in Rails:
require 'ruby_llm'
RubyLLM.configure do |config|
config.openai_api_key = ENV.fetch('OPENAI_API_KEY')
endConfigure the other providers used by the examples as needed: Gemini for files, xAI for video, Mistral for OCR, and Cohere for reranking. Getting Started shows each setup beside its example. If your app uses 1.16, follow the upgrade guide before deploying 2.0.
# Install Rails Integration
bin/rails generate ruby_llm:install
bin/rails db:migrate
bin/rails ruby_llm:load_models
# Add Chat UI (optional)
bin/rails generate ruby_llm:chat_uiclass Chat < ApplicationRecord
acts_as_chat
end
chat = Chat.create! model: "gpt-5.6-luna"
chat.ask "What's in this file?", with: "report.pdf"Visit http://localhost:3000/chats for a ready-to-use chat interface!
Guides · API reference · Models · Upgrading
See CONTRIBUTING.md.
Released under the MIT License.