Skip to main content

Release 5.0 2025.03.17.1

ยท 3 min read

๐ŸŽ‰ New Featuresโ€‹

Integrationsโ€‹

๐Ÿ’ป VS Code Chatโ€‹

The Serenity* Star VSCode Extension brings the power of highly customizable AI agents directly into your development environment. Integrate AI assistance into your coding workflow without leaving your editor.

For detailed instructions, configuration options, and commands, visit the official extension page on the VSCode Marketplace.

alt text

โšก Zapierโ€‹

The Serenity* Star Zapier Connector lets you use the power of AI-powered agents in your Zaps. This connector provides integration with Serenity* AI Hub for task and conversation automation.

For detailed instructions, operation details, and configuration options,visit our detailed integration guide in the blog section.

alt text

โ˜Š n8nโ€‹

The Serenity* Star n8n Node lets you use the power of AI-powered agents in your n8n workflows. This community node enables seamless integration with the Serenity* Star platform for task and conversation automation.

For detailed instructions, operation details, and configuration options, visit the GitHub repository for this community node.

alt text

๐Ÿ› ๏ธ Enhancementsโ€‹

โœ‰๏ธ Email Improvementsโ€‹

All emails have been updated with clearer graphics, texts and more information. Clearer communications to better understand all events in your account

alt text

๐Ÿ“ฒ WhatsApp Media Supportโ€‹

WhatsApp channels now support handling media files from the Agent to the user. This enables a new way of interaction, especially if speech or image generation plugins are configured in the agent. Generated audio and image files will be sent to the user as files in WhatsApp.

alt text

Note: For WhatsApp to support images and audio files, Skills must be configured with the "Include in agent Result" set to "True"

๐Ÿ“ Prompt Skillโ€‹

Prompt skill now supports input parameter mapping. Parameters in the prompt skill that match input parameters in the agent designer will be automatically mapped without further configuration. For more details, refer to the prompt skill documentation.

โ†ฉ๏ธ Serenity Chat Callbackโ€‹

Added functionality for triggering a callback action when receiving the agent response from the chat widget. Whether you want to update your custom UI or trigger additional events, use this callback function to customize the interaction.

const chat = new AIHubChat("aihub-chat", {
apiKey: "<api-key>",
agentCode: "agent-code",
baseURL: "https://api.serenitystar.ai/api",
onAgentResponse: (response) => {
// Your custom logic here
},
});
chat.init();

๐Ÿค– New Model Providersโ€‹

Enjoy new model providers, gaining access to even more AI Models.

  • Fireworks AI
  • Alibaba Cloud

Bugs and improvementsโ€‹

  • Fix bug that duplicated knowlege files when duplicating an agent
  • Better validation of Json Schema
  • Fix typos and clearer texts
  • Improved knowledge usage by using allowing the agent access to file metadata like file name to better understand context of each file.
  • Fixed bug that allowed for more than one input parameter with same key to be added.
  • Fixed side panel error when no card is registered in subscription view.