├── .editorconfig ├── .eslintignore ├── .eslintrc.cjs ├── .github ├── ISSUE_TEMPLATE │ ├── #0_bug_report.yml │ ├── #1_feature_request.yml │ ├── #2_question.yml │ ├── 0_bug_report.yml │ ├── 1_feature_request.yml │ └── 2_question.yml └── workflows │ └── release.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── snippet.code-snippets ├── .yarn └── patches │ ├── @llm-tools-embedjs-libsql-npm-0.1.25-fad000d74c.patch │ ├── @llm-tools-embedjs-loader-markdown-npm-0.1.25-d1d536d640.patch │ ├── @llm-tools-embedjs-npm-0.1.25-ec5645cf36.patch │ ├── @llm-tools-embedjs-utils-npm-0.1.25-fd8fe8a193.patch │ ├── openai-npm-4.76.2-8ff1374617.patch │ └── pdf-parse-npm-1.1.1-04a6109b2a.patch ├── .yarnrc.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── api ├── README.md ├── package.json ├── screenshot-chat.png ├── screenshot.png ├── src │ ├── config │ │ └── index.ts │ ├── index.ts │ ├── middleware │ │ └── auth.ts │ ├── routes │ │ ├── knowledge.ts │ │ └── provider.ts │ └── services │ │ ├── knowledge.ts │ │ ├── provider.ts │ │ └── rag.ts └── tsconfig.json ├── dev-app-update.yml ├── docs ├── README.ja.md ├── README.zh.md └── sponsor.md ├── electron-builder.yml ├── electron.vite.config.ts ├── package.json ├── packages ├── artifacts │ ├── README.md │ ├── package.json │ └── statics │ │ └── word-explanation-card.css ├── database │ ├── .gitignore │ ├── .yarn │ │ └── install-state.gz │ ├── README.md │ ├── data │ │ └── .gitkeep │ ├── package.json │ ├── src │ │ ├── agents.js │ │ ├── csv.js │ │ └── email.js │ └── yarn.lock └── shared │ └── config │ └── constant.ts ├── resources ├── cherry-studio │ ├── license.html │ └── releases.html ├── graphrag.html └── js │ ├── bridge.js │ └── utils.js ├── scripts ├── after-pack.js ├── build-npm.js ├── cloudflare-worker.js ├── notarize.js ├── remove-locales.js ├── replace-spaces.js ├── utils.js └── version.js ├── src ├── main │ ├── config.ts │ ├── constant.ts │ ├── electron.d.ts │ ├── env.d.ts │ ├── index.ts │ ├── ipc.ts │ ├── resources │ │ └── icon.ico │ ├── services │ │ ├── AppUpdater.ts │ │ ├── BackupManager.ts │ │ ├── CacheService.ts │ │ ├── ConfigManager.ts │ │ ├── ExportService.ts │ │ ├── FileStorage.ts │ │ ├── GeminiService.ts │ │ ├── KnowledgeService.ts │ │ ├── ShortcutService.ts │ │ ├── TrayService.ts │ │ ├── WebDav.ts │ │ └── WindowService.ts │ └── utils │ │ ├── aes.ts │ │ ├── file.ts │ │ ├── index.ts │ │ ├── locales.ts │ │ ├── upgrade.ts │ │ ├── windowUtil.ts │ │ └── zip.ts ├── preload │ ├── index.d.ts │ └── index.ts └── renderer │ ├── index.html │ └── src │ ├── App.tsx │ ├── assets │ ├── fonts │ │ ├── icon-fonts │ │ │ ├── iconfont.css │ │ │ └── iconfont.woff2 │ │ └── ubuntu │ │ │ ├── Ubuntu-Bold.ttf │ │ │ ├── Ubuntu-BoldItalic.ttf │ │ │ ├── Ubuntu-Italic.ttf │ │ │ ├── Ubuntu-Light.ttf │ │ │ ├── Ubuntu-LightItalic.ttf │ │ │ ├── Ubuntu-Medium.ttf │ │ │ ├── Ubuntu-MediumItalic.ttf │ │ │ ├── Ubuntu-Regular.ttf │ │ │ └── ubuntu.css │ ├── images │ │ ├── apps │ │ │ ├── baidu-ai.png │ │ │ ├── baixiaoying.webp │ │ │ ├── bolt.svg │ │ │ ├── devv.png │ │ │ ├── doubao.png │ │ │ ├── duckduckgo.webp │ │ │ ├── felo.png │ │ │ ├── gemini.png │ │ │ ├── genspark.jpg │ │ │ ├── github-copilot.webp │ │ │ ├── hika.webp │ │ │ ├── huggingchat.svg │ │ │ ├── kimi.jpg │ │ │ ├── metaso.webp │ │ │ ├── nm.webp │ │ │ ├── perplexity.webp │ │ │ ├── poe.webp │ │ │ ├── qingyan.png │ │ │ ├── sensetime.png │ │ │ ├── sparkdesk.png │ │ │ ├── thinkany.webp │ │ │ ├── tiangong.png │ │ │ ├── wanzhi.jpg │ │ │ ├── yuanbao.png │ │ │ ├── yuewen.png │ │ │ └── zhihu.png │ │ ├── avatar.png │ │ ├── logo.png │ │ ├── models │ │ │ ├── 360.png │ │ │ ├── 360_dark.png │ │ │ ├── adept.png │ │ │ ├── adept_dark.png │ │ │ ├── ai21.png │ │ │ ├── ai21_dark.png │ │ │ ├── aimass.png │ │ │ ├── aimass_dark.png │ │ │ ├── aisingapore.png │ │ │ ├── aisingapore_dark.png │ │ │ ├── baichuan.png │ │ │ ├── baichuan_dark.png │ │ │ ├── bigcode.png │ │ │ ├── bigcode.webp │ │ │ ├── bigcode_dark.png │ │ │ ├── bigcode_dark.webp │ │ │ ├── chatglm.png │ │ │ ├── chatglm_dark.png │ │ │ ├── chatgpt.jpeg │ │ │ ├── claude.png │ │ │ ├── claude_dark.png │ │ │ ├── codegeex.png │ │ │ ├── codegeex_dark.png │ │ │ ├── cohere.png │ │ │ ├── cohere.webp │ │ │ ├── cohere_dark.png │ │ │ ├── copilot.png │ │ │ ├── copilot_dark.png │ │ │ ├── dalle.png │ │ │ ├── dalle_dark.png │ │ │ ├── dbrx.png │ │ │ ├── dbrx_dark.png │ │ │ ├── deepseek.png │ │ │ ├── deepseek_dark.png │ │ │ ├── dianxin.png │ │ │ ├── dianxin_dark.png │ │ │ ├── doubao.png │ │ │ ├── doubao_dark.png │ │ │ ├── embedding.png │ │ │ ├── flashaudio.png │ │ │ ├── flashaudio_dark.png │ │ │ ├── flux.png │ │ │ ├── flux_dark.png │ │ │ ├── gemini.png │ │ │ ├── gemini_dark.png │ │ │ ├── gemma.png │ │ │ ├── gemma_dark.png │ │ │ ├── google.png │ │ │ ├── gpt_3.5.png │ │ │ ├── gpt_4.png │ │ │ ├── gpt_dark.png │ │ │ ├── gpt_o1.png │ │ │ ├── grok.png │ │ │ ├── grok_dark.png │ │ │ ├── gryphe.png │ │ │ ├── gryphe_dark.png │ │ │ ├── hailuo.png │ │ │ ├── hailuo_dark.png │ │ │ ├── huggingface.png │ │ │ ├── huggingface_dark.png │ │ │ ├── hunyuan.png │ │ │ ├── hunyuan_dark.png │ │ │ ├── ibm.png │ │ │ ├── ibm_dark.png │ │ │ ├── internlm.png │ │ │ ├── internlm_dark.png │ │ │ ├── jina.png │ │ │ ├── jina_dark.png │ │ │ ├── keling.png │ │ │ ├── keling_dark.png │ │ │ ├── llama.png │ │ │ ├── llama_dark.png │ │ │ ├── llava.png │ │ │ ├── llava_dark.png │ │ │ ├── luma.png │ │ │ ├── luma_dark.png │ │ │ ├── magic.png │ │ │ ├── magic_dark.png │ │ │ ├── mediatek.png │ │ │ ├── mediatek_dark.png │ │ │ ├── microsoft.png │ │ │ ├── microsoft_dark.png │ │ │ ├── midjourney.png │ │ │ ├── midjourney_dark.png │ │ │ ├── minicpm.webp │ │ │ ├── minimax.png │ │ │ ├── minimax_dark.png │ │ │ ├── mixtral.png │ │ │ ├── mixtral_dark.png │ │ │ ├── moonshot.png │ │ │ ├── moonshot_dark.png │ │ │ ├── nousresearch.png │ │ │ ├── nvidia.png │ │ │ ├── nvidia_dark.png │ │ │ ├── palm.png │ │ │ ├── palm_dark.png │ │ │ ├── pixtral.png │ │ │ ├── pixtral_dark.png │ │ │ ├── qwen.png │ │ │ ├── qwen_dark.png │ │ │ ├── rakutenai.png │ │ │ ├── rakutenai_dark.png │ │ │ ├── sparkdesk.png │ │ │ ├── sparkdesk_dark.png │ │ │ ├── stability.png │ │ │ ├── stability_dark.png │ │ │ ├── step.png │ │ │ ├── step_dark.png │ │ │ ├── suno.png │ │ │ ├── suno_dark.png │ │ │ ├── tele.png │ │ │ ├── tele_dark.png │ │ │ ├── upstage.png │ │ │ ├── upstage_dark.png │ │ │ ├── vidu.png │ │ │ ├── vidu_dark.png │ │ │ ├── wenxin.png │ │ │ ├── wenxin_dark.png │ │ │ ├── yi.png │ │ │ ├── yi_dark.png │ │ │ ├── zhipu.png │ │ │ └── zhipu_dark.png │ │ ├── paintings │ │ │ ├── image-size-1-1.svg │ │ │ ├── image-size-1-2.svg │ │ │ ├── image-size-16-9.svg │ │ │ ├── image-size-3-2.svg │ │ │ ├── image-size-3-4.svg │ │ │ └── image-size-9-16.svg │ │ └── providers │ │ │ ├── aihubmix.jpg │ │ │ ├── anthropic.png │ │ │ ├── baichuan.png │ │ │ ├── bailian.png │ │ │ ├── bytedance.png │ │ │ ├── dashscope.png │ │ │ ├── deepseek.png │ │ │ ├── doubao.png │ │ │ ├── fireworks.png │ │ │ ├── gemini.png │ │ │ ├── github.png │ │ │ ├── google.png │ │ │ ├── graph-rag.png │ │ │ ├── grok.png │ │ │ ├── groq.png │ │ │ ├── hyperbolic.png │ │ │ ├── infini-ai.png │ │ │ ├── jina.png │ │ │ ├── lepton.png │ │ │ ├── minimax.png │ │ │ ├── mistral.png │ │ │ ├── mixedbread.png │ │ │ ├── moonshot.png │ │ │ ├── nvidia.png │ │ │ ├── ocoolai.png │ │ │ ├── ollama.png │ │ │ ├── openai.jpeg │ │ │ ├── openai.png │ │ │ ├── openrouter.png │ │ │ ├── perplexity.png │ │ │ ├── silicon.png │ │ │ ├── step.png │ │ │ ├── together.png │ │ │ ├── volcengine.png │ │ │ ├── zero-one.png │ │ │ └── zhipu.png │ └── styles │ │ ├── ant.scss │ │ ├── index.scss │ │ ├── markdown.scss │ │ └── scrollbar.scss │ ├── components │ ├── Avatar │ │ └── ModelAvatar.tsx │ ├── DragableList │ │ └── index.tsx │ ├── EmojiPicker │ │ └── index.tsx │ ├── Icons │ │ ├── CopyIcon.tsx │ │ ├── VisionIcon.tsx │ │ └── WebSearchIcon.tsx │ ├── IndicatorLight.tsx │ ├── Layout │ │ └── index.ts │ ├── ListItem │ │ └── index.tsx │ ├── MinApp │ │ └── index.tsx │ ├── ModelTags.tsx │ ├── Popups │ │ ├── AddAssistantPopup.tsx │ │ ├── AppStorePopover.tsx │ │ ├── PromptPopup.tsx │ │ ├── SearchPopup.tsx │ │ ├── SelectModelPopup.tsx │ │ ├── TemplatePopup.tsx │ │ ├── TextEditPopup.tsx │ │ └── UserPopup.tsx │ ├── Scrollbar │ │ └── index.tsx │ ├── TopView │ │ └── index.tsx │ ├── TranslateButton.tsx │ └── app │ │ ├── Navbar.tsx │ │ └── Sidebar.tsx │ ├── config │ ├── agents.json │ ├── constant.ts │ ├── env.ts │ ├── minapps.ts │ ├── models.ts │ ├── prompts.ts │ ├── providers.ts │ └── tools.ts │ ├── context │ ├── AntdProvider.tsx │ ├── SyntaxHighlighterProvider.tsx │ └── ThemeProvider.tsx │ ├── databases │ └── index.ts │ ├── env.d.ts │ ├── hooks │ ├── useAgents.ts │ ├── useAppInit.ts │ ├── useAssistant.ts │ ├── useAvatar.ts │ ├── useBridge.ts │ ├── useKnowledge.ts │ ├── useMermaid.ts │ ├── useModel.ts │ ├── useOllama.ts │ ├── usePaintings.ts │ ├── useProvider.ts │ ├── useRuntime.ts │ ├── useScrollPosition.ts │ ├── useSettings.ts │ ├── useShortcuts.ts │ ├── useStore.ts │ ├── useTopic.ts │ └── useUpdateHandler.ts │ ├── i18n │ ├── index.ts │ └── locales │ │ ├── en-us.json │ │ ├── ja-jp.json │ │ ├── ru-ru.json │ │ ├── zh-cn.json │ │ └── zh-tw.json │ ├── init.ts │ ├── main.tsx │ ├── pages │ ├── agents │ │ ├── AgentsPage.tsx │ │ ├── agentGroupTranslations.ts │ │ └── components │ │ │ ├── AddAgentCard.tsx │ │ │ ├── AddAgentPopup.tsx │ │ │ ├── AgentCard.tsx │ │ │ ├── ManageAgentsPopup.tsx │ │ │ └── MyAgents.tsx │ ├── apps │ │ ├── App.tsx │ │ └── AppsPage.tsx │ ├── files │ │ ├── ContentView.tsx │ │ ├── FilesPage.tsx │ │ └── GeminiFiles.tsx │ ├── history │ │ ├── HistoryPage.tsx │ │ └── components │ │ │ ├── SearchMessage.tsx │ │ │ ├── SearchResults.tsx │ │ │ ├── TopicMessages.tsx │ │ │ └── TopicsHistory.tsx │ ├── home │ │ ├── Chat.tsx │ │ ├── HomePage.tsx │ │ ├── Inputbar │ │ │ ├── AttachmentButton.tsx │ │ │ ├── AttachmentPreview.tsx │ │ │ ├── Inputbar.tsx │ │ │ ├── KnowledgeBaseButton.tsx │ │ │ ├── SendMessageButton.tsx │ │ │ └── TokenCount.tsx │ │ ├── Markdown │ │ │ ├── Artifacts.tsx │ │ │ ├── CodeBlock.tsx │ │ │ ├── ImagePreview.tsx │ │ │ ├── Link.tsx │ │ │ ├── Markdown.tsx │ │ │ ├── Mermaid.tsx │ │ │ ├── MermaidPopup.tsx │ │ │ └── SvgPreview.tsx │ │ ├── Messages │ │ │ ├── Message.tsx │ │ │ ├── MessageAttachments.tsx │ │ │ ├── MessageContent.tsx │ │ │ ├── MessageError.tsx │ │ │ ├── MessageErrorBoundary.tsx │ │ │ ├── MessageHeader.tsx │ │ │ ├── MessageMenubar.tsx │ │ │ ├── MessageTokens.tsx │ │ │ ├── Messages.tsx │ │ │ ├── NarrowLayout.tsx │ │ │ └── Prompt.tsx │ │ ├── Navbar.tsx │ │ ├── Tabs │ │ │ ├── AssistantsTab.tsx │ │ │ ├── SettingsTab.tsx │ │ │ ├── TopicsTab.tsx │ │ │ └── index.tsx │ │ └── components │ │ │ ├── SelectModelButton.tsx │ │ │ └── Suggestions.tsx │ ├── knowledge │ │ ├── KnowledgeContent.tsx │ │ ├── KnowledgePage.tsx │ │ └── components │ │ │ ├── AddKnowledgePopup.tsx │ │ │ ├── KnowledgeSearchPopup.tsx │ │ │ └── StatusIcon.tsx │ ├── paintings │ │ ├── Artboard.tsx │ │ ├── PaintingsList.tsx │ │ └── PaintingsPage.tsx │ ├── settings │ │ ├── AboutSettings.tsx │ │ ├── AssistantSettings │ │ │ ├── AssistantMessagesSettings.tsx │ │ │ ├── AssistantModelSettings.tsx │ │ │ ├── AssistantPromptSettings.tsx │ │ │ └── index.tsx │ │ ├── DataSettings │ │ │ ├── DataSettings.tsx │ │ │ └── WebDavSettings.tsx │ │ ├── DisplaySettings │ │ │ ├── DisplaySettings.tsx │ │ │ └── SidebarIconsManager.tsx │ │ ├── GeneralSettings.tsx │ │ ├── ModalSettings │ │ │ ├── DefaultAssistantSettings.tsx │ │ │ ├── ModelSettings.tsx │ │ │ └── TopicNamingModalPopup.tsx │ │ ├── ProviderSettings │ │ │ ├── AddModelPopup.tsx │ │ │ ├── AddProviderPopup.tsx │ │ │ ├── ApiCheckPopup.tsx │ │ │ ├── EditModelsPopup.tsx │ │ │ ├── GraphRAGSettings.tsx │ │ │ ├── OllamaSettings.tsx │ │ │ ├── ProviderSetting.tsx │ │ │ └── index.tsx │ │ ├── SettingsPage.tsx │ │ ├── ShortcutSettings.tsx │ │ └── index.tsx │ └── translate │ │ └── TranslatePage.tsx │ ├── providers │ ├── AiProvider.ts │ ├── AnthropicProvider.ts │ ├── BaseProvider.ts │ ├── GeminiProvider.ts │ ├── OpenAIProvider.ts │ ├── ProviderFactory.ts │ └── index.d.ts │ ├── queue │ └── KnowledgeQueue.ts │ ├── services │ ├── ApiService.ts │ ├── AssistantService.ts │ ├── BackupService.ts │ ├── EventService.ts │ ├── FileManager.ts │ ├── ImageStorage.ts │ ├── KnowledgeService.ts │ ├── MessagesService.ts │ ├── ModelService.ts │ ├── NavigationService.ts │ ├── ProviderService.ts │ ├── TokenService.ts │ └── TranslateService.ts │ ├── store │ ├── agents.ts │ ├── assistants.ts │ ├── index.ts │ ├── knowledge.ts │ ├── llm.ts │ ├── migrate.ts │ ├── paintings.ts │ ├── runtime.ts │ ├── settings.ts │ └── shortcuts.ts │ ├── types │ └── index.ts │ └── utils │ ├── download.ts │ ├── export.ts │ ├── formula.ts │ ├── index.ts │ ├── oauth.ts │ └── style.ts ├── tsconfig.json ├── tsconfig.node.json ├── tsconfig.web.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/#0_bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/.github/ISSUE_TEMPLATE/#0_bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/#1_feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/.github/ISSUE_TEMPLATE/#1_feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/#2_question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/.github/ISSUE_TEMPLATE/#2_question.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/0_bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/.github/ISSUE_TEMPLATE/0_bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1_feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/.github/ISSUE_TEMPLATE/1_feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2_question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/.github/ISSUE_TEMPLATE/2_question.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["dbaeumer.vscode-eslint"] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/snippet.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/.vscode/snippet.code-snippets -------------------------------------------------------------------------------- /.yarn/patches/@llm-tools-embedjs-libsql-npm-0.1.25-fad000d74c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/.yarn/patches/@llm-tools-embedjs-libsql-npm-0.1.25-fad000d74c.patch -------------------------------------------------------------------------------- /.yarn/patches/@llm-tools-embedjs-loader-markdown-npm-0.1.25-d1d536d640.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/.yarn/patches/@llm-tools-embedjs-loader-markdown-npm-0.1.25-d1d536d640.patch -------------------------------------------------------------------------------- /.yarn/patches/@llm-tools-embedjs-npm-0.1.25-ec5645cf36.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/.yarn/patches/@llm-tools-embedjs-npm-0.1.25-ec5645cf36.patch -------------------------------------------------------------------------------- /.yarn/patches/@llm-tools-embedjs-utils-npm-0.1.25-fd8fe8a193.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/.yarn/patches/@llm-tools-embedjs-utils-npm-0.1.25-fd8fe8a193.patch -------------------------------------------------------------------------------- /.yarn/patches/openai-npm-4.76.2-8ff1374617.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/.yarn/patches/openai-npm-4.76.2-8ff1374617.patch -------------------------------------------------------------------------------- /.yarn/patches/pdf-parse-npm-1.1.1-04a6109b2a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/.yarn/patches/pdf-parse-npm-1.1.1-04a6109b2a.patch -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/README.md -------------------------------------------------------------------------------- /api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/api/README.md -------------------------------------------------------------------------------- /api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/api/package.json -------------------------------------------------------------------------------- /api/screenshot-chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/api/screenshot-chat.png -------------------------------------------------------------------------------- /api/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/api/screenshot.png -------------------------------------------------------------------------------- /api/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/api/src/config/index.ts -------------------------------------------------------------------------------- /api/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/api/src/index.ts -------------------------------------------------------------------------------- /api/src/middleware/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/api/src/middleware/auth.ts -------------------------------------------------------------------------------- /api/src/routes/knowledge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/api/src/routes/knowledge.ts -------------------------------------------------------------------------------- /api/src/routes/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/api/src/routes/provider.ts -------------------------------------------------------------------------------- /api/src/services/knowledge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/api/src/services/knowledge.ts -------------------------------------------------------------------------------- /api/src/services/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/api/src/services/provider.ts -------------------------------------------------------------------------------- /api/src/services/rag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/api/src/services/rag.ts -------------------------------------------------------------------------------- /api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/api/tsconfig.json -------------------------------------------------------------------------------- /dev-app-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/dev-app-update.yml -------------------------------------------------------------------------------- /docs/README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/docs/README.ja.md -------------------------------------------------------------------------------- /docs/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/docs/README.zh.md -------------------------------------------------------------------------------- /docs/sponsor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/docs/sponsor.md -------------------------------------------------------------------------------- /electron-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/electron-builder.yml -------------------------------------------------------------------------------- /electron.vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/electron.vite.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/package.json -------------------------------------------------------------------------------- /packages/artifacts/README.md: -------------------------------------------------------------------------------- 1 | # Cherry Studio Artifacts 2 | -------------------------------------------------------------------------------- /packages/artifacts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/packages/artifacts/package.json -------------------------------------------------------------------------------- /packages/artifacts/statics/word-explanation-card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/packages/artifacts/statics/word-explanation-card.css -------------------------------------------------------------------------------- /packages/database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/packages/database/.gitignore -------------------------------------------------------------------------------- /packages/database/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/packages/database/.yarn/install-state.gz -------------------------------------------------------------------------------- /packages/database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/packages/database/README.md -------------------------------------------------------------------------------- /packages/database/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/database/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/packages/database/package.json -------------------------------------------------------------------------------- /packages/database/src/agents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/packages/database/src/agents.js -------------------------------------------------------------------------------- /packages/database/src/csv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/packages/database/src/csv.js -------------------------------------------------------------------------------- /packages/database/src/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/packages/database/src/email.js -------------------------------------------------------------------------------- /packages/database/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/packages/database/yarn.lock -------------------------------------------------------------------------------- /packages/shared/config/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/packages/shared/config/constant.ts -------------------------------------------------------------------------------- /resources/cherry-studio/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/resources/cherry-studio/license.html -------------------------------------------------------------------------------- /resources/cherry-studio/releases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/resources/cherry-studio/releases.html -------------------------------------------------------------------------------- /resources/graphrag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/resources/graphrag.html -------------------------------------------------------------------------------- /resources/js/bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/resources/js/bridge.js -------------------------------------------------------------------------------- /resources/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/resources/js/utils.js -------------------------------------------------------------------------------- /scripts/after-pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/scripts/after-pack.js -------------------------------------------------------------------------------- /scripts/build-npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/scripts/build-npm.js -------------------------------------------------------------------------------- /scripts/cloudflare-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/scripts/cloudflare-worker.js -------------------------------------------------------------------------------- /scripts/notarize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/scripts/notarize.js -------------------------------------------------------------------------------- /scripts/remove-locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/scripts/remove-locales.js -------------------------------------------------------------------------------- /scripts/replace-spaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/scripts/replace-spaces.js -------------------------------------------------------------------------------- /scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/scripts/utils.js -------------------------------------------------------------------------------- /scripts/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/scripts/version.js -------------------------------------------------------------------------------- /src/main/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/config.ts -------------------------------------------------------------------------------- /src/main/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/constant.ts -------------------------------------------------------------------------------- /src/main/electron.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/electron.d.ts -------------------------------------------------------------------------------- /src/main/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/env.d.ts -------------------------------------------------------------------------------- /src/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/index.ts -------------------------------------------------------------------------------- /src/main/ipc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/ipc.ts -------------------------------------------------------------------------------- /src/main/resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/resources/icon.ico -------------------------------------------------------------------------------- /src/main/services/AppUpdater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/services/AppUpdater.ts -------------------------------------------------------------------------------- /src/main/services/BackupManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/services/BackupManager.ts -------------------------------------------------------------------------------- /src/main/services/CacheService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/services/CacheService.ts -------------------------------------------------------------------------------- /src/main/services/ConfigManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/services/ConfigManager.ts -------------------------------------------------------------------------------- /src/main/services/ExportService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/services/ExportService.ts -------------------------------------------------------------------------------- /src/main/services/FileStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/services/FileStorage.ts -------------------------------------------------------------------------------- /src/main/services/GeminiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/services/GeminiService.ts -------------------------------------------------------------------------------- /src/main/services/KnowledgeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/services/KnowledgeService.ts -------------------------------------------------------------------------------- /src/main/services/ShortcutService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/services/ShortcutService.ts -------------------------------------------------------------------------------- /src/main/services/TrayService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/services/TrayService.ts -------------------------------------------------------------------------------- /src/main/services/WebDav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/services/WebDav.ts -------------------------------------------------------------------------------- /src/main/services/WindowService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/services/WindowService.ts -------------------------------------------------------------------------------- /src/main/utils/aes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/utils/aes.ts -------------------------------------------------------------------------------- /src/main/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/utils/file.ts -------------------------------------------------------------------------------- /src/main/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/utils/index.ts -------------------------------------------------------------------------------- /src/main/utils/locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/utils/locales.ts -------------------------------------------------------------------------------- /src/main/utils/upgrade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/utils/upgrade.ts -------------------------------------------------------------------------------- /src/main/utils/windowUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/utils/windowUtil.ts -------------------------------------------------------------------------------- /src/main/utils/zip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/main/utils/zip.ts -------------------------------------------------------------------------------- /src/preload/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/preload/index.d.ts -------------------------------------------------------------------------------- /src/preload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/preload/index.ts -------------------------------------------------------------------------------- /src/renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/index.html -------------------------------------------------------------------------------- /src/renderer/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/App.tsx -------------------------------------------------------------------------------- /src/renderer/src/assets/fonts/icon-fonts/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/fonts/icon-fonts/iconfont.css -------------------------------------------------------------------------------- /src/renderer/src/assets/fonts/icon-fonts/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/fonts/icon-fonts/iconfont.woff2 -------------------------------------------------------------------------------- /src/renderer/src/assets/fonts/ubuntu/Ubuntu-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/fonts/ubuntu/Ubuntu-Bold.ttf -------------------------------------------------------------------------------- /src/renderer/src/assets/fonts/ubuntu/Ubuntu-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/fonts/ubuntu/Ubuntu-BoldItalic.ttf -------------------------------------------------------------------------------- /src/renderer/src/assets/fonts/ubuntu/Ubuntu-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/fonts/ubuntu/Ubuntu-Italic.ttf -------------------------------------------------------------------------------- /src/renderer/src/assets/fonts/ubuntu/Ubuntu-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/fonts/ubuntu/Ubuntu-Light.ttf -------------------------------------------------------------------------------- /src/renderer/src/assets/fonts/ubuntu/Ubuntu-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/fonts/ubuntu/Ubuntu-LightItalic.ttf -------------------------------------------------------------------------------- /src/renderer/src/assets/fonts/ubuntu/Ubuntu-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/fonts/ubuntu/Ubuntu-Medium.ttf -------------------------------------------------------------------------------- /src/renderer/src/assets/fonts/ubuntu/Ubuntu-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/fonts/ubuntu/Ubuntu-MediumItalic.ttf -------------------------------------------------------------------------------- /src/renderer/src/assets/fonts/ubuntu/Ubuntu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/fonts/ubuntu/Ubuntu-Regular.ttf -------------------------------------------------------------------------------- /src/renderer/src/assets/fonts/ubuntu/ubuntu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/fonts/ubuntu/ubuntu.css -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/baidu-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/baidu-ai.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/baixiaoying.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/baixiaoying.webp -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/bolt.svg -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/devv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/devv.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/doubao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/doubao.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/duckduckgo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/duckduckgo.webp -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/felo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/felo.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/gemini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/gemini.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/genspark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/genspark.jpg -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/github-copilot.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/github-copilot.webp -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/hika.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/hika.webp -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/huggingchat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/huggingchat.svg -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/kimi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/kimi.jpg -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/metaso.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/metaso.webp -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/nm.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/nm.webp -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/perplexity.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/perplexity.webp -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/poe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/poe.webp -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/qingyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/qingyan.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/sensetime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/sensetime.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/sparkdesk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/sparkdesk.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/thinkany.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/thinkany.webp -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/tiangong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/tiangong.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/wanzhi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/wanzhi.jpg -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/yuanbao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/yuanbao.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/yuewen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/yuewen.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/apps/zhihu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/apps/zhihu.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/avatar.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/logo.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/360.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/360_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/360_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/adept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/adept.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/adept_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/adept_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/ai21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/ai21.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/ai21_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/ai21_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/aimass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/aimass.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/aimass_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/aimass_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/aisingapore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/aisingapore.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/aisingapore_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/aisingapore_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/baichuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/baichuan.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/baichuan_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/baichuan_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/bigcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/bigcode.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/bigcode.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/bigcode.webp -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/bigcode_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/bigcode_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/bigcode_dark.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/bigcode_dark.webp -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/chatglm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/chatglm.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/chatglm_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/chatglm_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/chatgpt.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/chatgpt.jpeg -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/claude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/claude.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/claude_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/claude_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/codegeex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/codegeex.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/codegeex_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/codegeex_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/cohere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/cohere.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/cohere.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/cohere.webp -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/cohere_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/cohere_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/copilot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/copilot.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/copilot_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/copilot_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/dalle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/dalle.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/dalle_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/dalle_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/dbrx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/dbrx.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/dbrx_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/dbrx_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/deepseek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/deepseek.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/deepseek_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/deepseek_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/dianxin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/dianxin.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/dianxin_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/dianxin_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/doubao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/doubao.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/doubao_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/doubao_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/embedding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/embedding.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/flashaudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/flashaudio.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/flashaudio_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/flashaudio_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/flux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/flux.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/flux_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/flux_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/gemini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/gemini.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/gemini_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/gemini_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/gemma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/gemma.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/gemma_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/gemma_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/google.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/gpt_3.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/gpt_3.5.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/gpt_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/gpt_4.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/gpt_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/gpt_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/gpt_o1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/gpt_o1.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/grok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/grok.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/grok_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/grok_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/gryphe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/gryphe.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/gryphe_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/gryphe_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/hailuo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/hailuo.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/hailuo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/hailuo_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/huggingface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/huggingface.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/huggingface_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/huggingface_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/hunyuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/hunyuan.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/hunyuan_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/hunyuan_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/ibm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/ibm.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/ibm_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/ibm_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/internlm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/internlm.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/internlm_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/internlm_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/jina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/jina.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/jina_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/jina_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/keling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/keling.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/keling_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/keling_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/llama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/llama.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/llama_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/llama_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/llava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/llava.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/llava_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/llava_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/luma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/luma.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/luma_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/luma_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/magic.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/magic_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/magic_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/mediatek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/mediatek.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/mediatek_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/mediatek_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/microsoft.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/microsoft_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/microsoft_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/midjourney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/midjourney.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/midjourney_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/midjourney_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/minicpm.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/minicpm.webp -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/minimax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/minimax.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/minimax_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/minimax_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/mixtral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/mixtral.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/mixtral_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/mixtral_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/moonshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/moonshot.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/moonshot_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/moonshot_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/nousresearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/nousresearch.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/nvidia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/nvidia.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/nvidia_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/nvidia_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/palm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/palm.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/palm_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/palm_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/pixtral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/pixtral.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/pixtral_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/pixtral_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/qwen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/qwen.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/qwen_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/qwen_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/rakutenai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/rakutenai.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/rakutenai_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/rakutenai_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/sparkdesk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/sparkdesk.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/sparkdesk_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/sparkdesk_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/stability.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/stability.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/stability_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/stability_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/step.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/step_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/step_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/suno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/suno.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/suno_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/suno_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/tele.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/tele.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/tele_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/tele_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/upstage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/upstage.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/upstage_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/upstage_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/vidu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/vidu.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/vidu_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/vidu_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/wenxin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/wenxin.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/wenxin_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/wenxin_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/yi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/yi.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/yi_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/yi_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/zhipu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/zhipu.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/models/zhipu_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/models/zhipu_dark.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/paintings/image-size-1-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/paintings/image-size-1-1.svg -------------------------------------------------------------------------------- /src/renderer/src/assets/images/paintings/image-size-1-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/paintings/image-size-1-2.svg -------------------------------------------------------------------------------- /src/renderer/src/assets/images/paintings/image-size-16-9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/paintings/image-size-16-9.svg -------------------------------------------------------------------------------- /src/renderer/src/assets/images/paintings/image-size-3-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/paintings/image-size-3-2.svg -------------------------------------------------------------------------------- /src/renderer/src/assets/images/paintings/image-size-3-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/paintings/image-size-3-4.svg -------------------------------------------------------------------------------- /src/renderer/src/assets/images/paintings/image-size-9-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/paintings/image-size-9-16.svg -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/aihubmix.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/aihubmix.jpg -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/anthropic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/anthropic.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/baichuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/baichuan.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/bailian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/bailian.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/bytedance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/bytedance.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/dashscope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/dashscope.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/deepseek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/deepseek.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/doubao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/doubao.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/fireworks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/fireworks.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/gemini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/gemini.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/github.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/google.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/graph-rag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/graph-rag.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/grok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/grok.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/groq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/groq.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/hyperbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/hyperbolic.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/infini-ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/infini-ai.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/jina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/jina.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/lepton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/lepton.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/minimax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/minimax.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/mistral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/mistral.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/mixedbread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/mixedbread.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/moonshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/moonshot.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/nvidia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/nvidia.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/ocoolai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/ocoolai.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/ollama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/ollama.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/openai.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/openai.jpeg -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/openai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/openai.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/openrouter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/openrouter.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/perplexity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/perplexity.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/silicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/silicon.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/step.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/together.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/together.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/volcengine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/volcengine.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/zero-one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/zero-one.png -------------------------------------------------------------------------------- /src/renderer/src/assets/images/providers/zhipu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/images/providers/zhipu.png -------------------------------------------------------------------------------- /src/renderer/src/assets/styles/ant.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/styles/ant.scss -------------------------------------------------------------------------------- /src/renderer/src/assets/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/styles/index.scss -------------------------------------------------------------------------------- /src/renderer/src/assets/styles/markdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/styles/markdown.scss -------------------------------------------------------------------------------- /src/renderer/src/assets/styles/scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/assets/styles/scrollbar.scss -------------------------------------------------------------------------------- /src/renderer/src/components/Avatar/ModelAvatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/Avatar/ModelAvatar.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/DragableList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/DragableList/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/EmojiPicker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/EmojiPicker/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Icons/CopyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/Icons/CopyIcon.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Icons/VisionIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/Icons/VisionIcon.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Icons/WebSearchIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/Icons/WebSearchIcon.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/IndicatorLight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/IndicatorLight.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Layout/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/Layout/index.ts -------------------------------------------------------------------------------- /src/renderer/src/components/ListItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/ListItem/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/MinApp/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/MinApp/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/ModelTags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/ModelTags.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Popups/AddAssistantPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/Popups/AddAssistantPopup.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Popups/AppStorePopover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/Popups/AppStorePopover.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Popups/PromptPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/Popups/PromptPopup.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Popups/SearchPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/Popups/SearchPopup.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Popups/SelectModelPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/Popups/SelectModelPopup.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Popups/TemplatePopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/Popups/TemplatePopup.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Popups/TextEditPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/Popups/TextEditPopup.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Popups/UserPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/Popups/UserPopup.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/Scrollbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/Scrollbar/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/TopView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/TopView/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/TranslateButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/TranslateButton.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/app/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/app/Navbar.tsx -------------------------------------------------------------------------------- /src/renderer/src/components/app/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/components/app/Sidebar.tsx -------------------------------------------------------------------------------- /src/renderer/src/config/agents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/config/agents.json -------------------------------------------------------------------------------- /src/renderer/src/config/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/config/constant.ts -------------------------------------------------------------------------------- /src/renderer/src/config/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/config/env.ts -------------------------------------------------------------------------------- /src/renderer/src/config/minapps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/config/minapps.ts -------------------------------------------------------------------------------- /src/renderer/src/config/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/config/models.ts -------------------------------------------------------------------------------- /src/renderer/src/config/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/config/prompts.ts -------------------------------------------------------------------------------- /src/renderer/src/config/providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/config/providers.ts -------------------------------------------------------------------------------- /src/renderer/src/config/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/config/tools.ts -------------------------------------------------------------------------------- /src/renderer/src/context/AntdProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/context/AntdProvider.tsx -------------------------------------------------------------------------------- /src/renderer/src/context/SyntaxHighlighterProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/context/SyntaxHighlighterProvider.tsx -------------------------------------------------------------------------------- /src/renderer/src/context/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/context/ThemeProvider.tsx -------------------------------------------------------------------------------- /src/renderer/src/databases/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/databases/index.ts -------------------------------------------------------------------------------- /src/renderer/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/env.d.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useAgents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/hooks/useAgents.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useAppInit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/hooks/useAppInit.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useAssistant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/hooks/useAssistant.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useAvatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/hooks/useAvatar.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useBridge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/hooks/useBridge.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useKnowledge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/hooks/useKnowledge.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useMermaid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/hooks/useMermaid.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/hooks/useModel.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useOllama.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/hooks/useOllama.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/usePaintings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/hooks/usePaintings.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/hooks/useProvider.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useRuntime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/hooks/useRuntime.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useScrollPosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/hooks/useScrollPosition.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/hooks/useSettings.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useShortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/hooks/useShortcuts.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/hooks/useStore.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useTopic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/hooks/useTopic.ts -------------------------------------------------------------------------------- /src/renderer/src/hooks/useUpdateHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/hooks/useUpdateHandler.ts -------------------------------------------------------------------------------- /src/renderer/src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/i18n/index.ts -------------------------------------------------------------------------------- /src/renderer/src/i18n/locales/en-us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/i18n/locales/en-us.json -------------------------------------------------------------------------------- /src/renderer/src/i18n/locales/ja-jp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/i18n/locales/ja-jp.json -------------------------------------------------------------------------------- /src/renderer/src/i18n/locales/ru-ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/i18n/locales/ru-ru.json -------------------------------------------------------------------------------- /src/renderer/src/i18n/locales/zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/i18n/locales/zh-cn.json -------------------------------------------------------------------------------- /src/renderer/src/i18n/locales/zh-tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/i18n/locales/zh-tw.json -------------------------------------------------------------------------------- /src/renderer/src/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/init.ts -------------------------------------------------------------------------------- /src/renderer/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/main.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/agents/AgentsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/agents/AgentsPage.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/agents/agentGroupTranslations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/agents/agentGroupTranslations.ts -------------------------------------------------------------------------------- /src/renderer/src/pages/agents/components/AddAgentCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/agents/components/AddAgentCard.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/agents/components/AddAgentPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/agents/components/AddAgentPopup.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/agents/components/AgentCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/agents/components/AgentCard.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/agents/components/ManageAgentsPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/agents/components/ManageAgentsPopup.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/agents/components/MyAgents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/agents/components/MyAgents.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/apps/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/apps/App.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/apps/AppsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/apps/AppsPage.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/files/ContentView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/files/ContentView.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/files/FilesPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/files/FilesPage.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/files/GeminiFiles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/files/GeminiFiles.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/history/HistoryPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/history/HistoryPage.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/history/components/SearchMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/history/components/SearchMessage.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/history/components/SearchResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/history/components/SearchResults.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/history/components/TopicMessages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/history/components/TopicMessages.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/history/components/TopicsHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/history/components/TopicsHistory.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Chat.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/HomePage.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Inputbar/AttachmentButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Inputbar/AttachmentButton.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Inputbar/AttachmentPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Inputbar/AttachmentPreview.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Inputbar/Inputbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Inputbar/Inputbar.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Inputbar/KnowledgeBaseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Inputbar/KnowledgeBaseButton.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Inputbar/SendMessageButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Inputbar/SendMessageButton.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Inputbar/TokenCount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Inputbar/TokenCount.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Markdown/Artifacts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Markdown/Artifacts.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Markdown/CodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Markdown/CodeBlock.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Markdown/ImagePreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Markdown/ImagePreview.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Markdown/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Markdown/Link.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Markdown/Markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Markdown/Markdown.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Markdown/Mermaid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Markdown/Mermaid.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Markdown/MermaidPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Markdown/MermaidPopup.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Markdown/SvgPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Markdown/SvgPreview.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Messages/Message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Messages/Message.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Messages/MessageAttachments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Messages/MessageAttachments.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Messages/MessageContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Messages/MessageContent.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Messages/MessageError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Messages/MessageError.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Messages/MessageErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Messages/MessageErrorBoundary.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Messages/MessageHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Messages/MessageHeader.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Messages/MessageMenubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Messages/MessageMenubar.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Messages/MessageTokens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Messages/MessageTokens.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Messages/Messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Messages/Messages.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Messages/NarrowLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Messages/NarrowLayout.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Messages/Prompt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Messages/Prompt.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Navbar.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Tabs/AssistantsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Tabs/AssistantsTab.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Tabs/SettingsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Tabs/SettingsTab.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Tabs/TopicsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Tabs/TopicsTab.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/Tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/Tabs/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/components/SelectModelButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/components/SelectModelButton.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/home/components/Suggestions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/home/components/Suggestions.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/knowledge/KnowledgeContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/knowledge/KnowledgeContent.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/knowledge/KnowledgePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/knowledge/KnowledgePage.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/knowledge/components/AddKnowledgePopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/knowledge/components/AddKnowledgePopup.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/knowledge/components/KnowledgeSearchPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/knowledge/components/KnowledgeSearchPopup.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/knowledge/components/StatusIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/knowledge/components/StatusIcon.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/paintings/Artboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/paintings/Artboard.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/paintings/PaintingsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/paintings/PaintingsList.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/paintings/PaintingsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/paintings/PaintingsPage.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/AboutSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/AboutSettings.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/AssistantSettings/AssistantMessagesSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/AssistantSettings/AssistantMessagesSettings.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/AssistantSettings/AssistantModelSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/AssistantSettings/AssistantModelSettings.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/AssistantSettings/AssistantPromptSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/AssistantSettings/AssistantPromptSettings.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/AssistantSettings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/AssistantSettings/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/DataSettings/DataSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/DataSettings/DataSettings.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/DataSettings/WebDavSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/DataSettings/WebDavSettings.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/DisplaySettings/DisplaySettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/DisplaySettings/DisplaySettings.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/DisplaySettings/SidebarIconsManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/DisplaySettings/SidebarIconsManager.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/GeneralSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/GeneralSettings.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/ModalSettings/DefaultAssistantSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/ModalSettings/DefaultAssistantSettings.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/ModalSettings/ModelSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/ModalSettings/ModelSettings.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/ModalSettings/TopicNamingModalPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/ModalSettings/TopicNamingModalPopup.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/ProviderSettings/AddModelPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/ProviderSettings/AddModelPopup.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/ProviderSettings/AddProviderPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/ProviderSettings/AddProviderPopup.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/ProviderSettings/ApiCheckPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/ProviderSettings/ApiCheckPopup.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/ProviderSettings/EditModelsPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/ProviderSettings/EditModelsPopup.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/ProviderSettings/GraphRAGSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/ProviderSettings/GraphRAGSettings.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/ProviderSettings/OllamaSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/ProviderSettings/OllamaSettings.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/ProviderSettings/ProviderSetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/ProviderSettings/ProviderSetting.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/ProviderSettings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/ProviderSettings/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/SettingsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/SettingsPage.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/ShortcutSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/ShortcutSettings.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/settings/index.tsx -------------------------------------------------------------------------------- /src/renderer/src/pages/translate/TranslatePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/pages/translate/TranslatePage.tsx -------------------------------------------------------------------------------- /src/renderer/src/providers/AiProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/providers/AiProvider.ts -------------------------------------------------------------------------------- /src/renderer/src/providers/AnthropicProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/providers/AnthropicProvider.ts -------------------------------------------------------------------------------- /src/renderer/src/providers/BaseProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/providers/BaseProvider.ts -------------------------------------------------------------------------------- /src/renderer/src/providers/GeminiProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/providers/GeminiProvider.ts -------------------------------------------------------------------------------- /src/renderer/src/providers/OpenAIProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/providers/OpenAIProvider.ts -------------------------------------------------------------------------------- /src/renderer/src/providers/ProviderFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/providers/ProviderFactory.ts -------------------------------------------------------------------------------- /src/renderer/src/providers/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/providers/index.d.ts -------------------------------------------------------------------------------- /src/renderer/src/queue/KnowledgeQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/queue/KnowledgeQueue.ts -------------------------------------------------------------------------------- /src/renderer/src/services/ApiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/services/ApiService.ts -------------------------------------------------------------------------------- /src/renderer/src/services/AssistantService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/services/AssistantService.ts -------------------------------------------------------------------------------- /src/renderer/src/services/BackupService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/services/BackupService.ts -------------------------------------------------------------------------------- /src/renderer/src/services/EventService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/services/EventService.ts -------------------------------------------------------------------------------- /src/renderer/src/services/FileManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/services/FileManager.ts -------------------------------------------------------------------------------- /src/renderer/src/services/ImageStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/services/ImageStorage.ts -------------------------------------------------------------------------------- /src/renderer/src/services/KnowledgeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/services/KnowledgeService.ts -------------------------------------------------------------------------------- /src/renderer/src/services/MessagesService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/services/MessagesService.ts -------------------------------------------------------------------------------- /src/renderer/src/services/ModelService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/services/ModelService.ts -------------------------------------------------------------------------------- /src/renderer/src/services/NavigationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/services/NavigationService.ts -------------------------------------------------------------------------------- /src/renderer/src/services/ProviderService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/services/ProviderService.ts -------------------------------------------------------------------------------- /src/renderer/src/services/TokenService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/services/TokenService.ts -------------------------------------------------------------------------------- /src/renderer/src/services/TranslateService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/services/TranslateService.ts -------------------------------------------------------------------------------- /src/renderer/src/store/agents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/store/agents.ts -------------------------------------------------------------------------------- /src/renderer/src/store/assistants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/store/assistants.ts -------------------------------------------------------------------------------- /src/renderer/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/store/index.ts -------------------------------------------------------------------------------- /src/renderer/src/store/knowledge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/store/knowledge.ts -------------------------------------------------------------------------------- /src/renderer/src/store/llm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/store/llm.ts -------------------------------------------------------------------------------- /src/renderer/src/store/migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/store/migrate.ts -------------------------------------------------------------------------------- /src/renderer/src/store/paintings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/store/paintings.ts -------------------------------------------------------------------------------- /src/renderer/src/store/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/store/runtime.ts -------------------------------------------------------------------------------- /src/renderer/src/store/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/store/settings.ts -------------------------------------------------------------------------------- /src/renderer/src/store/shortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/store/shortcuts.ts -------------------------------------------------------------------------------- /src/renderer/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/types/index.ts -------------------------------------------------------------------------------- /src/renderer/src/utils/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/utils/download.ts -------------------------------------------------------------------------------- /src/renderer/src/utils/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/utils/export.ts -------------------------------------------------------------------------------- /src/renderer/src/utils/formula.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/utils/formula.ts -------------------------------------------------------------------------------- /src/renderer/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/utils/index.ts -------------------------------------------------------------------------------- /src/renderer/src/utils/oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/utils/oauth.ts -------------------------------------------------------------------------------- /src/renderer/src/utils/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/src/renderer/src/utils/style.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /tsconfig.web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/tsconfig.web.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tufeiping/api-for-cherrystudio/HEAD/yarn.lock --------------------------------------------------------------------------------