Files
clientsflow/research/chatwoot/enterprise/app/services/captain/tools/instrumentation.rb

11 lines
207 B
Ruby

module Captain::Tools::Instrumentation
extend ActiveSupport::Concern
include Integrations::LlmInstrumentation
def execute(**args)
instrument_tool_call(name, args) do
super
end
end
end