mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-03-08 18:29:32 +00:00
11 lines
237 B
Ruby
11 lines
237 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
Fabricator(:ai_tool) do
|
||
|
name "github tool"
|
||
|
tool_name "github_tool"
|
||
|
description "This is a tool for GitHub"
|
||
|
summary "This is a tool for GitHub"
|
||
|
script "puts 'Hello, GitHub!'"
|
||
|
created_by_id 1
|
||
|
end
|