Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export async function getTokenForDefaultModel() {
const token = await getRefreshedAccessToken();
return token;
} else {
const errorMessage = 'This feature is only available for BI Intelligence users.';
const errorMessage = 'This feature is only available for WSO2 Integrator Copilot users.';
vscode.window.showErrorMessage(errorMessage);
throw new Error(errorMessage);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ export function getErrorMessage(error: unknown): string {
return "The AI service returned an invalid response. Please try again.";
}
if (msg.includes("Unsupported login method")) {
return "Please sign in to BI Copilot to use AI features.";
return "Please sign in to WSO2 Integrator Copilot to use AI features.";
}

return msg;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ const LoginPanel: React.FC = () => {
<StyledButton onClick={handleCopilotLogin}>Login using WSO2 Integration Platform</StyledButton>
) : (
<InstallingContainer>
Install WSO2 Integrator to sign in and use BI Copilot.
Install WSO2 Integrator to sign in and use WSO2 Integrator Copilot.
<StyledButton
disabled={isInstallingExtension || undefined}
onClick={installExtension}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export const CodeSection: React.FC<CodeSectionProps> = ({
? `Generating ${isTestCode ? "Tests..." : "Integration..."}`
: isTestCode
? "Ballerina Tests"
: "BI Integration";
: "Integration";

const allCodeSegments = splitContent(message.content)
.filter((segment) => segment.type === SegmentType.Code)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ export const FlowNodeForm = forwardRef<FormExpressionEditorRef, FlowNodeFormProp
);

const formDiagnosticsFixTooltip = !isAiUserAuthenticated
? "You need to be logged into BI Copilot to fix diagnostics"
? "You need to be logged into WSO2 Integrator Copilot to fix diagnostics"
: !diagnosticsTargetRange
? "No source location available for diagnostics"
: formDiagnostics.length === 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function AIEnhancementToggle({ enabled, onChange }: AIEnhancementToggleProps) {
<RadioContent>
<RadioTitle>Skip for Now – Enhance Later</RadioTitle>
<RadioDescription>
Open the project as-is. You can trigger AI enhancement later from the BI Copilot.
Open the project as-is. You can trigger AI enhancement later from the WSO2 Integrator Copilot.
</RadioDescription>
</RadioContent>
</RadioOption>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export function ImportIntegrationForm({
return (
<>
<BodyText>
This wizard converts an external integration from MuleSoft or TIBCO into a ready-to-use BI
This wizard converts an external integration from MuleSoft or TIBCO into a ready-to-use WSO2 Integrator
project.
</BodyText>
<Typography variant="h3" sx={{ marginTop: 20, marginBottom: 8 }}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ export function MigrationPanel() {
title="Select LLM model"
>
<option value="copilot">VS Code Copilot</option>
<option value="wso2">WSO2 BI Copilot</option>
<option value="wso2">WSO2 Integrator Copilot</option>
<option value="anthropic">Anthropic (API Key)</option>
</ModelSelector>
</HeaderActions>
Expand Down Expand Up @@ -603,7 +603,7 @@ export function MigrationPanel() {
) : (
<>
<span style={{ opacity: 0.6 }}>
Model: {selectedModel === "copilot" ? "VS Code Copilot" : selectedModel === "wso2" ? "WSO2 BI Copilot" : "Anthropic"}
Model: {selectedModel === "copilot" ? "VS Code Copilot" : selectedModel === "wso2" ? "WSO2 Integrator Copilot" : "Anthropic"}
</span>
{messages.length > 0 && (
<ActionButton
Expand Down
Loading