From 7a20d11acce50987a513ee0ce3a3a775ed52b454 Mon Sep 17 00:00:00 2001 From: HashWarlock Date: Sun, 25 Jan 2026 18:35:53 -0600 Subject: [PATCH] feat(commands): add Redpill to auth choice options Co-Authored-By: Claude Sonnet 4.5 --- src/commands/auth-choice-options.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/commands/auth-choice-options.ts b/src/commands/auth-choice-options.ts index f13eef365..6f4ae412e 100644 --- a/src/commands/auth-choice-options.ts +++ b/src/commands/auth-choice-options.ts @@ -22,7 +22,8 @@ export type AuthChoiceGroupId = | "minimax" | "synthetic" | "venice" - | "qwen"; + | "qwen" + | "redpill"; export type AuthChoiceGroup = { value: AuthChoiceGroupId; @@ -61,6 +62,12 @@ const AUTH_CHOICE_GROUP_DEFS: { hint: "OAuth", choices: ["qwen-portal"], }, + { + value: "redpill", + label: "Redpill AI", + hint: "GPU TEE privacy (DeepSeek, Qwen, Llama)", + choices: ["redpill-api-key"], + }, { value: "synthetic", label: "Synthetic",