mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 05:35:40 +08:00
7 lines
198 B
Ruby
Vendored
7 lines
198 B
Ruby
Vendored
# 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"
|
|
show_thinking false
|
|
end
|