summaryrefslogtreecommitdiff
path: root/components/providers/base.rb
blob: 011c5dd10396b39da13c4ea93938927480a4ef8a (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

require 'openai'

module NanoBot
  module Components
    module Providers
      class Base
        def evaluate(_payload)
          raise NoMethodError, "The 'evaluate' method is not implemented for the current provider."
        end
      end
    end
  end
end