Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sort AI bots in settings page #800

Merged
merged 1 commit into from
Apr 20, 2024
Merged
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
Sort AI bots in settings page
  • Loading branch information
PeterDaveHello committed Apr 19, 2024
commit 5262a29415741ad15af435601c36e2a5ea1fee88
8 changes: 4 additions & 4 deletions src/components/SettingsModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -146,18 +146,20 @@ const botSettings = [
{ brand: "bard", component: BardBotSettings },
{ brand: "bingChat", component: BingChatBotSettings },
{ brand: "characterAI", component: CharacterAIBotSettings },
{ brand: "chatGpt", component: ChatGPTBotSettings },
{ brand: "chatGlm", component: ChatGLMBotSettings },
{ brand: "chatGpt", component: ChatGPTBotSettings },
{ brand: "claudeAi", component: ClaudeAIBotSettings },
{ brand: "claudeApi", component: ClaudeAPIBotSettings },
{ brand: "falcon", component: Falcon180bBotSettings },
{ brand: "geminiApi", component: GeminiAPIBotSettings },
{ brand: "gradio", component: GradioAppBotSettings },
{ brand: "groqApi", component: GroqAPIBotSettings },
{ brand: "huggingChat", component: HuggingChatBotSettings },
{ brand: "kimi", component: KimiBotSettings },
{ brand: "lmsys", component: LMSYSBotSettings },
{ brand: "mistral", component: MistralBotSettings },
{ brand: "moss", component: MOSSBotSettings },
{ brand: "openaiApi", component: OpenAIAPIBotSettings },
{ brand: "geminiApi", component: GeminiAPIBotSettings },
{ brand: "perplexity", component: PerplexityBotSettings },
{ brand: "phind", component: PhindBotSettings },
{ brand: "pi", component: PiBotSettings },
Expand All @@ -167,8 +169,6 @@ const botSettings = [
{ brand: "spark", component: SparkBotSettings },
{ brand: "wenxinQianfan", component: WenxinQianfanBotSettings },
{ brand: "youChat", component: YouChatBotSettings },
{ brand: "claudeApi", component: ClaudeAPIBotSettings },
{ brand: "groqApi", component: GroqAPIBotSettings },
];

const proxy = ProxySettings;
Expand Down