Class: Omakase::Agent

Inherits:
Object
  • Object
show all
Defined in:
lib/omakase/agent.rb

Overview

Fields are state, methods are what the model can call, generates declares the methods the model implements.

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(chat: nil) ⇒ Agent

chat: injects a prepared RubyLLM::Chat — the seam for tests.



109
110
111
# File 'lib/omakase/agent.rb', line 109

def initialize(chat: nil)
  @chat = chat
end

Class Method Details

.chat_optionsObject



83
# File 'lib/omakase/agent.rb', line 83

def chat_options = @chat_options ||= {}

.describe(text) ⇒ Object

Documents the method defined next — the docstring Ruby does not have.



51
52
53
# File 'lib/omakase/agent.rb', line 51

def describe(text)
  @pending_description = text
end

.descriptionsObject



81
# File 'lib/omakase/agent.rb', line 81

def descriptions = @descriptions ||= {}

.generates(name, prompt = nil, returns: nil, strategy: nil, model: nil, &schema) ⇒ Object

Without a prompt, the method name is the prompt. A block instead of a string is a prompt read at call time, on the agent.



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'lib/omakase/agent.rb', line 57

def generates(name, prompt = nil, returns: nil, strategy: nil, model: nil, &schema)
  # Redeclaring an inherited generation is how a subclass specialises one.
  # Landing on a method you wrote is not that, and would replace it unseen.
  if Capabilities.names(self).include?(name) && !generations.key?(name)
    raise Error, "#{self}##{name} is already a method — generates would replace it"
  end

  unless prompt.nil? || prompt.is_a?(String) || prompt.is_a?(Proc)
    raise Error, "#{self}##{name}: a prompt is a String or a block returning one, got #{prompt.class}"
  end

  generations[name] = Generation.new(
    name:,
    prompt: prompt || humanize(name),
    schema: Schema.define(returns:, &schema),
    strategy: Strategies.fetch(strategy || self.strategy),
    model:
  )
  define_method(name) { |**inputs| generate(name, inputs) }
  define_singleton_method(name) { |**inputs| new.public_send(name, **inputs) }
end

.generationsObject



79
# File 'lib/omakase/agent.rb', line 79

def generations = @generations ||= {}

.instructions(text = nil) ⇒ Object



18
19
20
21
22
# File 'lib/omakase/agent.rb', line 18

def instructions(text = nil)
  return @instructions.to_s if text.nil?

  @instructions = text
end

.mcp(name, **options) ⇒ Object

An MCP server's tools, as methods on the agent. Options are passed to ruby_llm-mcp verbatim: mcp :files, transport_type: :stdio, config: {command: "npx", …}.



32
33
34
35
# File 'lib/omakase/agent.rb', line 32

def mcp(name, **options)
  require "ruby_llm/mcp"
  MCP.attach(self, RubyLLM::MCP.add_client(name: name.to_s, **options))
end

.memoryObject

Two more methods: one to save something, one to search it by meaning. The store is a field, so it marshals with the agent and outlives the run.



43
44
45
46
47
48
# File 'lib/omakase/agent.rb', line 43

def memory
  describe "Save something worth remembering after this run"
  define_method(:remember) { |text| (@memory ||= Memory.new).remember(text) }
  describe "Search what you remember, by meaning; the closest few come back"
  define_method(:recall) { |query, limit: 5| (@memory ||= Memory.new).recall(query, limit:) }
end

.model(id = nil, **options) ⇒ Object

The model and any RubyLLM chat option. Naming a provider takes the model id on trust, since providers like OpenRouter or Ollama serve ids that are not in RubyLLM's registry.



11
12
13
14
15
16
# File 'lib/omakase/agent.rb', line 11

def model(id = nil, **options)
  return chat_options if id.nil? && options.empty?

  options = {assume_model_exists: true, **options} if options[:provider]
  @chat_options = {model: id, **options}.compact
end

.skill(path) ⇒ Object

A skill directory — a SKILL.md with YAML front matter. Its description joins the agent's capabilities; its body arrives when the model asks.



39
# File 'lib/omakase/agent.rb', line 39

def skill(path) = Skills.attach(self, path)

.strategy(name = nil) ⇒ Object



24
25
26
27
28
# File 'lib/omakase/agent.rb', line 24

def strategy(name = nil)
  return @strategy || :code_act if name.nil?

  @strategy = name
end

Instance Method Details

#chat(**overrides) ⇒ Object

A fresh conversation per call — two threads calling one agent must not share a mutable chat. What carries between calls is the object's own state. Overrides land on top of the class's options; an injected chat ignores them.



116
# File 'lib/omakase/agent.rb', line 116

def chat(**overrides) = @chat || RubyLLM.chat(**self.class.chat_options.merge(overrides))

#contextObject

That state, as the model should read it: rebuilt on every call, and added to the class's instructions. Override it to remember anything.



120
# File 'lib/omakase/agent.rb', line 120

def context = nil

#doc(object) ⇒ Object

For generated code meeting an object whose type it does not know.



129
# File 'lib/omakase/agent.rb', line 129

def doc(object) = puts(Doc.of(object))

#finish(value) ⇒ Object

How generated code answers: with the value itself.



132
# File 'lib/omakase/agent.rb', line 132

def finish(value) = throw(Executor::RESULT, value)

#marshal_dumpObject

Resuming a run is loading the object back, so an agent marshals like any other Ruby object — minus the live chat, which is rebuilt on demand.



124
# File 'lib/omakase/agent.rb', line 124

def marshal_dump = (instance_variables - [:@chat]).to_h { |name| [name, instance_variable_get(name)] }

#marshal_load(state) ⇒ Object



126
# File 'lib/omakase/agent.rb', line 126

def marshal_load(state) = state.each { |name, value| instance_variable_set(name, value) }

#p(*args) ⇒ Object Also known as: pp



140
141
142
143
# File 'lib/omakase/agent.rb', line 140

def p(*args)
  args.each { |arg| omakase_output.puts(arg.inspect) }
  (args.size <= 1) ? args.first : args
end


138
# File 'lib/omakase/agent.rb', line 138

def print(*args) = omakase_output.print(*args)

#puts(*args) ⇒ Object

Printing from generated code goes to the observation, not to the process's stdout — and the buffer is per thread, so concurrent agents stay separate.



136
# File 'lib/omakase/agent.rb', line 136

def puts(*args) = omakase_output.puts(*args)