Class: Riffer::Tools::Runtime::Inline

Inherits:
Riffer::Tools::Runtime show all
Defined in:
lib/riffer/tools/runtime/inline.rb

Overview

Executes tool calls sequentially in the current thread.

This is the default tool runtime used when no runtime is configured.

Instance Method Summary collapse

Methods inherited from Riffer::Tools::Runtime

#around_tool_call, #execute

Constructor Details

#initializeInline

– : () -> void



11
12
13
# File 'lib/riffer/tools/runtime/inline.rb', line 11

def initialize
  super(runner: Riffer::Runner::Sequential.new)
end