We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3beddee commit a02ef18Copy full SHA for a02ef18
1 file changed
src/acp-agent.ts
@@ -1327,6 +1327,13 @@ export class ClaudeAcpAgent implements Agent {
1327
throw error;
1328
}
1329
1330
+ if (shouldHideClaudeAuth() && initializationResult.account.subscriptionType) {
1331
+ throw RequestError.authRequired(
1332
+ undefined,
1333
+ "This integration does not support using claude.ai subscriptions.",
1334
+ );
1335
+ }
1336
+
1337
const models = await getAvailableModels(q, initializationResult.models, settingsManager);
1338
1339
const availableModes = [
0 commit comments