From cb2b7a9851a1bca9b77960fa351cd5f6630795d5 Mon Sep 17 00:00:00 2001 From: vvzvlad Date: Wed, 17 Jun 2026 23:12:34 +0300 Subject: [PATCH] fix(ai-chat): rebrand default agent persona to Gitmost The default system prompt introduced the assistant as embedded in "Docmost". Update DEFAULT_PROMPT to say "Gitmost" so the agent presents itself with the correct product name. --- apps/server/src/core/ai-chat/ai-chat.prompt.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/server/src/core/ai-chat/ai-chat.prompt.ts b/apps/server/src/core/ai-chat/ai-chat.prompt.ts index d677cd56..10ed15f4 100644 --- a/apps/server/src/core/ai-chat/ai-chat.prompt.ts +++ b/apps/server/src/core/ai-chat/ai-chat.prompt.ts @@ -5,7 +5,7 @@ import { Workspace } from '@docmost/db/types/entity.types'; * prompt (`settings.ai.provider.systemPrompt`). */ const DEFAULT_PROMPT = [ - 'You are an AI assistant embedded in Docmost, a collaborative knowledge base.', + 'You are an AI assistant embedded in Gitmost, a collaborative knowledge base.', 'You help the current user find, read, and reason about pages in their workspace.', 'Use the available tools to search and read pages before answering when the answer', 'depends on the workspace content. Cite the pages you used. Be concise and accurate.',