From e52c40baab06362a8216cbbcb92859984ee60454 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 15 Dec 2025 07:30:00 +0000 Subject: [PATCH 1/2] Initial plan From 9799231f880ae369e258d3a2f9c4c3743096aaf6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 15 Dec 2025 07:35:17 +0000 Subject: [PATCH 2/2] Add AI Badgr to frontend LLM factory constants Co-authored-by: miguelmanlyx <220451577+miguelmanlyx@users.noreply.github.com> --- web/src/constants/llm.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/src/constants/llm.ts b/web/src/constants/llm.ts index 1ff5f5387..2ab775657 100644 --- a/web/src/constants/llm.ts +++ b/web/src/constants/llm.ts @@ -61,6 +61,7 @@ export enum LLMFactory { JiekouAI = 'Jiekou.AI', Builtin = 'Builtin', MinerU = 'MinerU', + AIBadgr = 'AI Badgr', } // Please lowercase the file name @@ -127,6 +128,7 @@ export const IconMap = { [LLMFactory.JiekouAI]: 'jiekouai', [LLMFactory.Builtin]: 'builtin', [LLMFactory.MinerU]: 'mineru', + [LLMFactory.AIBadgr]: 'openai-api', }; export const APIMapUrl = { @@ -177,4 +179,5 @@ export const APIMapUrl = { [LLMFactory.DeerAPI]: 'https://api.deerapi.com/token', [LLMFactory.TokenPony]: 'https://www.tokenpony.cn/#/user/keys', [LLMFactory.DeepInfra]: 'https://deepinfra.com/dash/api_keys', + [LLMFactory.AIBadgr]: 'https://aibadgr.com/api-keys', };