Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(AIResponse): remove beta from the AI Response stories #2292

Merged
merged 1 commit into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/ai-components/AIResponse/__stories__/custom.story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const CustomContent = () => {
};

export default {
title: 'Components/AI/AI Response (Beta)/Custom Content',
title: 'Components/AI/AI Response/Custom Content',
component: AIResponse,
subcomponents: {
'AIResponse.Button': AIResponse.Button,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ const customCode = `() => {
}`;

export default {
title: 'Components/AI/AI Response (Beta)/Generating Content',
title: 'Components/AI/AI Response/Generating Content',
component: AIResponse,
subcomponents: {
'AIResponse.Button': AIResponse.Button,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ const customCode = `() => {
}`;

export default {
title: 'Components/AI/AI Response (Beta)/Giving Feedback',
title: 'Components/AI/AI Response/Giving Feedback',
component: AIResponse,
subcomponents: {
'AIResponse.Button': AIResponse.Button,
Expand Down
2 changes: 1 addition & 1 deletion core/ai-components/AIResponse/__stories__/index.story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ const customCode = `() => {
}`;

export default {
title: 'Components/AI/AI Response (Beta)/All',
title: 'Components/AI/AI Response/All',
component: AIResponse,
subcomponents: {
'AIResponse.Button': AIResponse.Button,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const GeneratingResponse = () => {
};

export default {
title: 'Components/AI/AI Response (Beta)/Generating Response',
title: 'Components/AI/AI Response/Generating Response',
component: AIResponse,
subcomponents: {
'AIResponse.Button': AIResponse.Button,
Expand Down
4 changes: 2 additions & 2 deletions docs/src/pages/components/AIResponse/code.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#### Live Demo
<br/>

<Preview name='components-ai-ai-response-beta-all--all' />
<Preview name='components-ai-ai-response-all--all' />

#### Props
<PreviewWithPropTable name='components-ai-ai-response-beta-all--all' />
<PreviewWithPropTable name='components-ai-ai-response-all--all' />
6 changes: 3 additions & 3 deletions docs/src/pages/components/AIResponse/usage.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords: ['Chat', 'Response', 'AI Chat', 'Chat box']

AI response is used to deliver information from Sara to the user.

<Preview name="components-ai-ai-response-beta-all--all" />
<Preview name="components-ai-ai-response-all--all" />

### States

Expand Down Expand Up @@ -99,7 +99,7 @@ It is recommended to display a tooltip when hovering over icon buttons within an

Here is an example showcasing how content is generated inside AI Response.

<Preview name="components-ai-ai-response-beta-generating-content--generating-content" />
<Preview name="components-ai-ai-response-generating-content--generating-content" />


### Usage
Expand All @@ -115,4 +115,4 @@ AI responses are highly customizable and can incorporate a wide range of compone

Users can share their feedback on the AI response by using the feedback buttons located at the bottom right corner of the response.

<Preview name="components-ai-ai-response-beta-giving-feedback--giving-feedback" />
<Preview name="components-ai-ai-response-giving-feedback--giving-feedback" />
Loading