mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-20 13:49:39 +02:00
11 lines
288 B
Ruby
11 lines
288 B
Ruby
|
class Message < ApplicationRecord
|
||
|
belongs_to :chat
|
||
|
|
||
|
enum :role, { user: "user", assistant: "assistant", system: "system" }
|
||
|
|
||
|
validates :content, presence: true
|
||
|
validates :role, presence: true
|
||
|
|
||
|
scope :conversation, -> { where(debug_mode: false, role: [ :user, :assistant ]) }
|
||
|
end
|