mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-07-08 23:32:45 +00:00
7 lines
176 B
Ruby
7 lines
176 B
Ruby
# frozen_string_literal: true
|
|
Fabricator(:ai_agent) do
|
|
name { sequence(:name) { |i| "agent_#{i}" } }
|
|
description "I am a test bot"
|
|
system_prompt "You are a test bot"
|
|
end
|