diff --git a/bot.py b/bot.py index 86f257c..b799cfa 100644 --- a/bot.py +++ b/bot.py @@ -186,7 +186,7 @@ ATLASSIAN_TOOLS = [ "properties": { "title": {"type": "string", "description": "Page title"}, "content": {"type": "string", "description": "Page body text (paragraphs separated by newlines)"}, - "space_key": {"type": "string", "description": "Confluence space key (default: AG)", "default": "AG"}, + "space_key": {"type": "string", "description": "Confluence space key (default: AI)", "default": "AI"}, }, "required": ["title", "content"], }, @@ -646,7 +646,7 @@ class AtlassianClient: return f"Failed to update Confluence page: {e}" async def confluence_create_page(self, token: str, title: str, content: str, - space_key: str = "AG") -> str: + space_key: str = "AI") -> str: cloud_id = await self._get_cloud_id(token) if not cloud_id: return "Error: Could not determine Atlassian Cloud instance."