Class: Chat

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
lib/chatgpt_assistant/models.rb

Overview

Chat model

Instance Method Summary collapse

Instance Method Details

#init_chat_if_actor_providedObject



95
96
97
98
99
# File 'lib/chatgpt_assistant/models.rb', line 95

def init_chat_if_actor_provided
  return if actor.nil?

  messages.create(content: prompt, role: "system")
end