Victor Bjorn
05/05/2026, 9:53 AM<gd-ai-assistant> web component in an Angular 20 application. The component listens to the following events:
• chatAssistantMessage
• chatReset
• linkClick
Additionally, it calls the following BETA API endpoint to reset chat history:
/api/v1/actions/workspaces/{workspaceId}/ai/chatHistory
Could you confirm whether any behavioral changes, compatibility concerns, deprecations, or migration steps are expected for the current implementation?
Thanks!kapa.ai
05/05/2026, 9:53 AM<gd-ai-assistant> web component's supported events — including linkClick, chatReset, chatUserMessage, chatAssistantMessage, chatFeedback, and chatVisualizationError — are documented as the current supported event set. [AI Assistant custom element] The knowledge sources do not mention any planned deprecation or breaking changes to these events as part of the Agentic AI Assistant rollout.
2. React SDK / Embedded Mode If you are using the AI Assistant in embedded mode through the React SDK, GoodData has explicitly called out a migration step:
> "If you use the AI Assistant in embedded mode through the React SDK, update to version 11.29.0 or newer. The switch will happen automatically once the new experience is enabled." [What's New in GoodData Cloud]
Since you're using the web component (not the React SDK directly), this may or may not apply depending on how your web component is bundled, but it's worth verifying.
3. Chat API (/api/v1/actions/workspaces/{workspaceId}/ai/chatHistory) This is the most significant concern. The Agentic AI Assistant uses a new and different chat API:
> "The chat API for the experimental agentic AI Assistant is new and differs from the earlier AI Assistant chat API." [Agentic AI Assistant – API Changes]
> "If you use AI Assistant APIs, you will need to switch to the new API endpoint." [What's New in GoodData Cloud]
The earlier chat APIs (including the /api/v1/actions/workspaces/{workspaceId}/ai/chatHistory endpoint you're using) will continue to work while the previous AI Assistant experience is still supported, but they will be deprecated separately when the old chatbot is retired. [Agentic AI Assistant – API Changes]
You should review the new API reference in your GoodData environment at:
/apidocs/?urls.primaryName=Gen-AI+(v1)
4. LLM Model Requirement The Agentic AI Assistant requires a reasoning-capable model (e.g., gpt-5.2). Older models like gpt-4o are not supported for the new experience. Make sure your configured LLM Provider uses ChatGPT 5.2 or newer before the migration happens. [What's New in GoodData Cloud]
Summary of Action Items The knowledge sources do not explicitly confirm whether the web component events themselves will change with the new agentic experience, so I'd recommend proactively testing your integration once the Agentic AI Assistant is enabled in your environment. 👍 0 button 👎 0 button ℹ️ Tip: Mention @kapa.ai in the thread for follow-ups.
👀 Our Support team monitors all messages and will jump in if needed., with interactive elementsShamil Akhmadyshev
05/05/2026, 11:50 AMVictor Bjorn
05/05/2026, 12:23 PMVictor Bjorn
05/06/2026, 7:35 PMMichael Ullock
05/06/2026, 7:49 PMShamil Akhmadyshev
05/07/2026, 3:26 PMchatAssistantMessage, chatReset, and linkClick — remains in place and continues to function today. [AI Assistant custom element]
However, the transition to the agentic, conversation-based model will affect some of these events. In particular, chatReset will no longer be applicable under the new experience, as it is being replaced by new conversation-related events better suited to the updated model.
You should plan to review and update your event listeners once the new experience is enabled in your environment.
2. Integration Method
The impact on your implementation depends on how you are currently loading the web component:
• Script tag pointing to GoodData's servers (recommended approach): No immediate action is required. The component will update automatically in line with the server-side changes.
• NPM package: If you are loading the web component via an NPM package, please ensure you are running version 11.32.0 or higher to maintain compatibility with the new Agentic AI Assistant.
3. Chat History API
This is the most significant area of concern for your integration. The Agentic AI Assistant introduces a new chat API that differs from the one currently in use. [Agentic AI Assistant – API Changes]
The existing /api/v1/actions/workspaces/{workspaceId}/ai/chatHistory endpoint will continue to function while the previous AI Assistant experience remains supported, but it is slated for deprecation once the legacy chatbot is retired. [Agentic AI Assistant – API Changes]
We recommend testing your integration proactively once the Agentic AI Assistant becomes available in your environment. Please continue to monitor the GoodData release notes for the latest updates and any further guidance as the rollout approaches.
Also, we strongly recommend upgrading to the new Agentic AI Assistant as soon as possible — it brings smarter reasoning, multi-step analysis, and new AI capabilities [What's New in GoodData Cloud]. You can try it today as an experimental feature in your organization settings. [Agentic AI Assistant]
If you have any questions in the meantime, do not hesitate to reach out.Shamil Akhmadyshev
05/07/2026, 3:59 PMVictor Bjorn
05/08/2026, 6:19 PM