Sha256: 8365832e2a37c079f87b9e3e61089e2059e3e8ced5679ec5541d124cf89ce832
Contents?: true
Size: 474 Bytes
Versions: 8
Compression:
Stored size: 474 Bytes
Contents
# frozen_string_literal: true require 'openai' module NanoBot module Components module Providers class Base def initialize(_settings, _credentials, _environment: {}) raise NoMethodError, "The 'initialize' method is not implemented for the current provider." end def evaluate(_payload) raise NoMethodError, "The 'evaluate' method is not implemented for the current provider." end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems