Class: Chat
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- Chat
- Defined in:
- lib/chatgpt_assistant/models.rb
Overview
Chat model
Instance Method Summary collapse
Instance Method Details
#init_chat_if_actor_provided ⇒ Object
95 96 97 98 99 |
# File 'lib/chatgpt_assistant/models.rb', line 95 def init_chat_if_actor_provided return if actor.nil? .create(content: prompt, role: "system") end |