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);
|
||||
}
|
||||
|
||||
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 isFullBeta = ['full-beta', 'enterprise'].includes(version);
|
||||
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>
|
||||
If you dont have an API key with GPT-4 access, you can set the Noodl AI to use the Limited Beta in the
|
||||
editor settings.
|
||||
If you dont have an API key with GPT-4 access, you can set the FluxScape AI to use the Limited Beta in
|
||||
the editor settings.
|
||||
</Text>
|
||||
<PrimaryButton
|
||||
size={PrimaryButtonSize.Small}
|
||||
@@ -597,8 +597,8 @@ export default function Clippy() {
|
||||
</Label>
|
||||
|
||||
<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
|
||||
beta access by bringing your own GPT-4 API key.
|
||||
You are running the limited beta of FluxScape AI. If features fewer commands and a less capable AI. Get
|
||||
full beta access by bringing your own GPT-4 API key.
|
||||
</Text>
|
||||
|
||||
<PrimaryButton
|
||||
|
||||
@@ -44,7 +44,7 @@ export function OpenAiSection() {
|
||||
}
|
||||
|
||||
return (
|
||||
<CollapsableSection title="Noodl AI (Beta)">
|
||||
<CollapsableSection title="FluxScape AI (Beta)">
|
||||
<Box hasXSpacing>
|
||||
<VStack>
|
||||
<PropertyPanelRow label="Version" isChanged={false}>
|
||||
@@ -66,7 +66,7 @@ export function OpenAiSection() {
|
||||
|
||||
{enabledState === 'disabled' && (
|
||||
<Box hasYSpacing>
|
||||
<Text>Noodl AI is currently disabled.</Text>
|
||||
<Text>FluxScape AI is currently disabled.</Text>
|
||||
</Box>
|
||||
)}
|
||||
|
||||
@@ -157,16 +157,16 @@ export function OpenAiSection() {
|
||||
UNSAFE_style={{ borderRadius: '2px', background: 'var(--theme-color-bg-3)' }}
|
||||
>
|
||||
<Title size={TitleSize.Medium} hasBottomSpacing>
|
||||
Noodl AI docs
|
||||
FluxScape AI docs
|
||||
</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
|
||||
variant={PrimaryButtonVariant.Muted}
|
||||
size={PrimaryButtonSize.Small}
|
||||
isGrowing
|
||||
label="Open docs"
|
||||
onClick={() => {
|
||||
platform.openExternal('https://docs.noodl.net/#/docs/getting-started/noodl-ai/');
|
||||
platform.openExternal('https://docs.fluxscape.io/docs/getting-started/noodl-ai');
|
||||
}}
|
||||
/>
|
||||
</Box>
|
||||
|
||||
@@ -182,7 +182,7 @@ function AiNodeChat({ context, onUpdated }: AiNodeChatProps) {
|
||||
footer={
|
||||
version === 'disabled' ? (
|
||||
<Center>
|
||||
<Text textType={TextType.Shy}>Noodl AI is currently disabled.</Text>
|
||||
<Text textType={TextType.Shy}>FluxScape AI is currently disabled.</Text>
|
||||
</Center>
|
||||
) : (
|
||||
<>
|
||||
|
||||
Reference in New Issue
Block a user