mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-04 06:28:47 +08:00
11 lines
323 B
Ruby
11 lines
323 B
Ruby
# frozen_string_literal: true
|
|
|
|
module DiscourseAi
|
|
module AiBot
|
|
USER_AGENT = "Discourse AI Bot 1.0 (https://www.discourse.org)"
|
|
TOPIC_AI_BOT_PM_FIELD = "is_ai_bot_pm"
|
|
POST_AI_LLM_NAME_FIELD = "ai_llm_name"
|
|
POST_AI_LLM_MODEL_ID_FIELD = "ai_llm_model_id"
|
|
POST_AI_AGENT_ID_FIELD = "ai_agent_id"
|
|
end
|
|
end
|