7 lines
148 B
Ruby
7 lines
148 B
Ruby
|
# frozen_string_literal: true
|
||
|
Fabricator(:ai_persona) do
|
||
|
name "test_bot"
|
||
|
description "I am a test bot"
|
||
|
system_prompt "You are a test bot"
|
||
|
end
|