misc: provider icons, tooltip in chat toolbar, conditionally display the "Open Skills Folder" button and update "Documentation" to "Website" in settings (#60)

This commit is contained in:
Felix
2026-02-12 11:11:28 +08:00
committed by GitHub
Unverified
parent 2ae4201639
commit 8ab1b3af36
26 changed files with 206 additions and 82 deletions

View File

@@ -0,0 +1,19 @@
import anthropic from './anthropic.svg';
import openai from './openai.svg';
import google from './google.svg';
import openrouter from './openrouter.svg';
import moonshot from './moonshot.svg';
import siliconflow from './siliconflow.svg';
import ollama from './ollama.svg';
import custom from './custom.svg';
export const providerIcons: Record<string, string> = {
anthropic,
openai,
google,
openrouter,
moonshot,
siliconflow,
ollama,
custom,
};