diff --git a/src/components/ConsoleOAuthFlow.tsx b/src/components/ConsoleOAuthFlow.tsx
index 73ba8d0a5..0ded245d3 100644
--- a/src/components/ConsoleOAuthFlow.tsx
+++ b/src/components/ConsoleOAuthFlow.tsx
@@ -477,43 +477,6 @@ function OAuthStatusMessage({
),
value: 'gemini_api',
},
- {
- label: (
-
- Claude account with subscription · Pro, Max, Team, or Enterprise
- {process.env.USER_TYPE === 'ant' && (
-
- {'\n'}
- [ANT-ONLY]{' '}
-
- Please use this option unless you need to login to a special org for accessing sensitive
- data (e.g. customer data, HIPI data) with the Console option
-
-
- )}
- {'\n'}
-
- ),
- value: 'claudeai',
- },
- {
- label: (
-
- Anthropic Console account · API usage billing
- {'\n'}
-
- ),
- value: 'console',
- },
- {
- label: (
-
- 3rd-party platform · Amazon Bedrock, Microsoft Foundry, or Vertex AI
- {'\n'}
-
- ),
- value: 'platform',
- },
]}
onChange={value => {
if (value === 'costrict') {
@@ -616,18 +579,6 @@ function OAuthStatusMessage({
opusModel: process.env.GEMINI_DEFAULT_OPUS_MODEL ?? '',
activeField: 'base_url',
});
- } else if (value === 'platform') {
- logEvent('tengu_oauth_platform_selected', {});
- setOAuthStatus({ state: 'platform_setup' });
- } else {
- setOAuthStatus({ state: 'ready_to_start' });
- if (value === 'claudeai') {
- logEvent('tengu_oauth_claudeai_selected', {});
- setLoginWithClaudeAi(true);
- } else {
- logEvent('tengu_oauth_console_selected', {});
- setLoginWithClaudeAi(false);
- }
}
}}
/>