Class: Lluminary::Models::OpenAi::Gpt35Turbo

Inherits:
Base
  • Object
show all
Defined in:
lib/lluminary/models/openai/gpt35_turbo.rb

Overview

Model class for OpenAI’s GPT-3.5 Turbo

Constant Summary collapse

NAME =
"gpt-3.5-turbo"

Instance Method Summary collapse

Methods inherited from Base

#format_prompt

Instance Method Details

#compatible_with?(provider_name) ⇒ Boolean

Returns:

  • (Boolean)


10
11
12
# File 'lib/lluminary/models/openai/gpt35_turbo.rb', line 10

def compatible_with?(provider_name)
  provider_name == :openai
end

#nameObject



14
15
16
# File 'lib/lluminary/models/openai/gpt35_turbo.rb', line 14

def name
  NAME
end