mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-07 12:08:13 +00:00
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
|