mirror of
https://github.com/fluxscape/fluxscape.git
synced 2026-01-11 14:52:54 +01:00
chore: Rename "Noodl AI" (#92)
This commit is contained in:
@@ -211,7 +211,7 @@ export default function Clippy() {
|
|||||||
aiAssistantModel.removeActivity(id);
|
aiAssistantModel.removeActivity(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
const initialPlaceholder = isInputOpen ? 'Select (or type) a command below' : 'Ask Noodl AI';
|
const initialPlaceholder = isInputOpen ? 'Select (or type) a command below' : 'Ask FluxScape AI';
|
||||||
const isPromptInWrongOrder = Boolean(!selectedOption) && Boolean(secondInputValue);
|
const isPromptInWrongOrder = Boolean(!selectedOption) && Boolean(secondInputValue);
|
||||||
const isFullBeta = ['full-beta', 'enterprise'].includes(version);
|
const isFullBeta = ['full-beta', 'enterprise'].includes(version);
|
||||||
const isLimitedBeta = false; // TODO: version === 'limited-beta';
|
const isLimitedBeta = false; // TODO: version === 'limited-beta';
|
||||||
@@ -412,8 +412,8 @@ export default function Clippy() {
|
|||||||
<Text hasBottomSpacing>4. Click the "Verify API Key" button</Text>
|
<Text hasBottomSpacing>4. Click the "Verify API Key" button</Text>
|
||||||
|
|
||||||
<Text hasBottomSpacing>
|
<Text hasBottomSpacing>
|
||||||
If you dont have an API key with GPT-4 access, you can set the Noodl AI to use the Limited Beta in the
|
If you dont have an API key with GPT-4 access, you can set the FluxScape AI to use the Limited Beta in
|
||||||
editor settings.
|
the editor settings.
|
||||||
</Text>
|
</Text>
|
||||||
<PrimaryButton
|
<PrimaryButton
|
||||||
size={PrimaryButtonSize.Small}
|
size={PrimaryButtonSize.Small}
|
||||||
@@ -597,8 +597,8 @@ export default function Clippy() {
|
|||||||
</Label>
|
</Label>
|
||||||
|
|
||||||
<Text hasBottomSpacing size={TextSize.Medium}>
|
<Text hasBottomSpacing size={TextSize.Medium}>
|
||||||
You are running the limited beta of Noodl AI. If features fewer commands and a less capable AI. Get full
|
You are running the limited beta of FluxScape AI. If features fewer commands and a less capable AI. Get
|
||||||
beta access by bringing your own GPT-4 API key.
|
full beta access by bringing your own GPT-4 API key.
|
||||||
</Text>
|
</Text>
|
||||||
|
|
||||||
<PrimaryButton
|
<PrimaryButton
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ export function OpenAiSection() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<CollapsableSection title="Noodl AI (Beta)">
|
<CollapsableSection title="FluxScape AI (Beta)">
|
||||||
<Box hasXSpacing>
|
<Box hasXSpacing>
|
||||||
<VStack>
|
<VStack>
|
||||||
<PropertyPanelRow label="Version" isChanged={false}>
|
<PropertyPanelRow label="Version" isChanged={false}>
|
||||||
@@ -66,7 +66,7 @@ export function OpenAiSection() {
|
|||||||
|
|
||||||
{enabledState === 'disabled' && (
|
{enabledState === 'disabled' && (
|
||||||
<Box hasYSpacing>
|
<Box hasYSpacing>
|
||||||
<Text>Noodl AI is currently disabled.</Text>
|
<Text>FluxScape AI is currently disabled.</Text>
|
||||||
</Box>
|
</Box>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
@@ -157,16 +157,16 @@ export function OpenAiSection() {
|
|||||||
UNSAFE_style={{ borderRadius: '2px', background: 'var(--theme-color-bg-3)' }}
|
UNSAFE_style={{ borderRadius: '2px', background: 'var(--theme-color-bg-3)' }}
|
||||||
>
|
>
|
||||||
<Title size={TitleSize.Medium} hasBottomSpacing>
|
<Title size={TitleSize.Medium} hasBottomSpacing>
|
||||||
Noodl AI docs
|
FluxScape AI docs
|
||||||
</Title>
|
</Title>
|
||||||
<Text hasBottomSpacing>See setup instructions and guides for how to use Noodl AI on our docs.</Text>
|
<Text hasBottomSpacing>See setup instructions and guides for how to use FluxScape AI on our docs.</Text>
|
||||||
<PrimaryButton
|
<PrimaryButton
|
||||||
variant={PrimaryButtonVariant.Muted}
|
variant={PrimaryButtonVariant.Muted}
|
||||||
size={PrimaryButtonSize.Small}
|
size={PrimaryButtonSize.Small}
|
||||||
isGrowing
|
isGrowing
|
||||||
label="Open docs"
|
label="Open docs"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
platform.openExternal('https://docs.noodl.net/#/docs/getting-started/noodl-ai/');
|
platform.openExternal('https://docs.fluxscape.io/docs/getting-started/noodl-ai');
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</Box>
|
</Box>
|
||||||
|
|||||||
@@ -182,7 +182,7 @@ function AiNodeChat({ context, onUpdated }: AiNodeChatProps) {
|
|||||||
footer={
|
footer={
|
||||||
version === 'disabled' ? (
|
version === 'disabled' ? (
|
||||||
<Center>
|
<Center>
|
||||||
<Text textType={TextType.Shy}>Noodl AI is currently disabled.</Text>
|
<Text textType={TextType.Shy}>FluxScape AI is currently disabled.</Text>
|
||||||
</Center>
|
</Center>
|
||||||
) : (
|
) : (
|
||||||
<>
|
<>
|
||||||
|
|||||||
Reference in New Issue
Block a user