@atlaskit/rovo-agent-components 0.5.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @atlaskit/rovo-agent-components
2
2
 
3
+ ## 0.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#131981](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/131981)
8
+ [`ac354a1b52112`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/ac354a1b52112) -
9
+ Adds streaming of LLM-generated contextual conversation starters
10
+
11
+ ### Patch Changes
12
+
13
+ - [#131981](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/131981)
14
+ [`32d80ef4b8f70`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/32d80ef4b8f70) -
15
+ Change copy capitalization
16
+
3
17
  ## 0.5.0
4
18
 
5
19
  ### Minor Changes
@@ -8,7 +8,7 @@ var _reactIntlNext = require("react-intl-next");
8
8
  var messages = exports.messages = (0, _reactIntlNext.defineMessages)({
9
9
  agentCreatedBy: {
10
10
  id: 'ai-mate.agent-profile-info.created-by',
11
- defaultMessage: 'Rovo agent by {creatorNameWithLink}',
11
+ defaultMessage: 'Rovo Agent by {creatorNameWithLink}',
12
12
  description: 'Message to show who created this Rovo agent'
13
13
  },
14
14
  agentDeactivated: {
@@ -2,7 +2,7 @@ import { defineMessages } from 'react-intl-next';
2
2
  export const messages = defineMessages({
3
3
  agentCreatedBy: {
4
4
  id: 'ai-mate.agent-profile-info.created-by',
5
- defaultMessage: 'Rovo agent by {creatorNameWithLink}',
5
+ defaultMessage: 'Rovo Agent by {creatorNameWithLink}',
6
6
  description: 'Message to show who created this Rovo agent'
7
7
  },
8
8
  agentDeactivated: {
@@ -2,7 +2,7 @@ import { defineMessages } from 'react-intl-next';
2
2
  export var messages = defineMessages({
3
3
  agentCreatedBy: {
4
4
  id: 'ai-mate.agent-profile-info.created-by',
5
- defaultMessage: 'Rovo agent by {creatorNameWithLink}',
5
+ defaultMessage: 'Rovo Agent by {creatorNameWithLink}',
6
6
  description: 'Message to show who created this Rovo agent'
7
7
  },
8
8
  agentDeactivated: {
@@ -1,6 +1,6 @@
1
1
  export { AgentProfileInfo, AgentProfileCreator, AgentStarCount } from './ui/agent-profile-info';
2
2
  export { StarIconButton } from './common/ui/star-icon-button';
3
- export { AgentConversationStarters, ConversationStarters, type AgentConversationStartersProps, getConversationStarters, } from './ui/agent-conversation-starters';
3
+ export { AgentConversationStarters, ConversationStarters, type AgentConversationStartersProps, type ConversationStartersProps, getConversationStarters, } from './ui/agent-conversation-starters';
4
4
  export { ChatPill, type ChatPillProps } from './common/ui/chat-pill';
5
5
  export { ChatPillIcon } from './common/ui/chat-icon';
6
6
  export { ShowIcon } from './common/ui/show-icon';
@@ -1,6 +1,6 @@
1
1
  export { AgentProfileInfo, AgentProfileCreator, AgentStarCount } from './ui/agent-profile-info';
2
2
  export { StarIconButton } from './common/ui/star-icon-button';
3
- export { AgentConversationStarters, ConversationStarters, type AgentConversationStartersProps, getConversationStarters, } from './ui/agent-conversation-starters';
3
+ export { AgentConversationStarters, ConversationStarters, type AgentConversationStartersProps, type ConversationStartersProps, getConversationStarters, } from './ui/agent-conversation-starters';
4
4
  export { ChatPill, type ChatPillProps } from './common/ui/chat-pill';
5
5
  export { ChatPillIcon } from './common/ui/chat-icon';
6
6
  export { ShowIcon } from './common/ui/show-icon';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/rovo-agent-components",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "This package host public components related to rovo agents, the components here are needed for other public atlaskit packages",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",