├── .dockerignore ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── PLUGIN_PUBLISH.yml │ ├── bug-report.yml │ └── feature-request.yml ├── PULL_REQUEST_TEMPLATE.md ├── auto_assign.yml ├── copilot-instructions.md ├── dependabot.yml └── workflows │ ├── auto_release.yml │ ├── code-format.yml │ ├── codeql.yml │ ├── coverage_test.yml │ ├── dashboard_ci.yml │ ├── docker-image.yml │ └── stale.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── README_en.md ├── README_fr.md ├── README_ja.md ├── README_ru.md ├── README_zh-TW.md ├── astrbot ├── __init__.py ├── api │ ├── __init__.py │ ├── all.py │ ├── event │ │ ├── __init__.py │ │ └── filter │ │ │ └── __init__.py │ ├── message_components.py │ ├── platform │ │ └── __init__.py │ ├── provider │ │ └── __init__.py │ ├── star │ │ └── __init__.py │ └── util │ │ └── __init__.py ├── cli │ ├── __init__.py │ ├── __main__.py │ ├── commands │ │ ├── __init__.py │ │ ├── cmd_conf.py │ │ ├── cmd_init.py │ │ ├── cmd_plug.py │ │ └── cmd_run.py │ └── utils │ │ ├── __init__.py │ │ ├── basic.py │ │ ├── plugin.py │ │ └── version_comparator.py ├── core │ ├── __init__.py │ ├── agent │ │ ├── agent.py │ │ ├── handoff.py │ │ ├── hooks.py │ │ ├── mcp_client.py │ │ ├── message.py │ │ ├── response.py │ │ ├── run_context.py │ │ ├── runners │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── coze │ │ │ │ ├── coze_agent_runner.py │ │ │ │ └── coze_api_client.py │ │ │ ├── dashscope │ │ │ │ └── dashscope_agent_runner.py │ │ │ ├── dify │ │ │ │ ├── dify_agent_runner.py │ │ │ │ └── dify_api_client.py │ │ │ └── tool_loop_agent_runner.py │ │ ├── tool.py │ │ └── tool_executor.py │ ├── astr_agent_context.py │ ├── astr_agent_hooks.py │ ├── astr_agent_run_util.py │ ├── astr_agent_tool_exec.py │ ├── astrbot_config_mgr.py │ ├── config │ │ ├── __init__.py │ │ ├── astrbot_config.py │ │ ├── default.py │ │ └── i18n_utils.py │ ├── conversation_mgr.py │ ├── core_lifecycle.py │ ├── db │ │ ├── __init__.py │ │ ├── migration │ │ │ ├── helper.py │ │ │ ├── migra_3_to_4.py │ │ │ ├── migra_45_to_46.py │ │ │ ├── migra_webchat_session.py │ │ │ ├── shared_preferences_v3.py │ │ │ └── sqlite_v3.py │ │ ├── po.py │ │ ├── sqlite.py │ │ └── vec_db │ │ │ ├── base.py │ │ │ └── faiss_impl │ │ │ ├── __init__.py │ │ │ ├── document_storage.py │ │ │ ├── embedding_storage.py │ │ │ ├── sqlite_init.sql │ │ │ └── vec_db.py │ ├── event_bus.py │ ├── exceptions.py │ ├── file_token_service.py │ ├── initial_loader.py │ ├── knowledge_base │ │ ├── chunking │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── fixed_size.py │ │ │ └── recursive.py │ │ ├── kb_db_sqlite.py │ │ ├── kb_helper.py │ │ ├── kb_mgr.py │ │ ├── models.py │ │ ├── parsers │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── markitdown_parser.py │ │ │ ├── pdf_parser.py │ │ │ ├── text_parser.py │ │ │ ├── url_parser.py │ │ │ └── util.py │ │ ├── prompts.py │ │ └── retrieval │ │ │ ├── __init__.py │ │ │ ├── hit_stopwords.txt │ │ │ ├── manager.py │ │ │ ├── rank_fusion.py │ │ │ └── sparse_retriever.py │ ├── log.py │ ├── message │ │ ├── components.py │ │ └── message_event_result.py │ ├── persona_mgr.py │ ├── pipeline │ │ ├── __init__.py │ │ ├── content_safety_check │ │ │ ├── stage.py │ │ │ └── strategies │ │ │ │ ├── __init__.py │ │ │ │ ├── baidu_aip.py │ │ │ │ ├── keywords.py │ │ │ │ └── strategy.py │ │ ├── context.py │ │ ├── context_utils.py │ │ ├── preprocess_stage │ │ │ └── stage.py │ │ ├── process_stage │ │ │ ├── method │ │ │ │ ├── agent_request.py │ │ │ │ ├── agent_sub_stages │ │ │ │ │ ├── internal.py │ │ │ │ │ └── third_party.py │ │ │ │ └── star_request.py │ │ │ ├── stage.py │ │ │ └── utils.py │ │ ├── rate_limit_check │ │ │ └── stage.py │ │ ├── respond │ │ │ └── stage.py │ │ ├── result_decorate │ │ │ └── stage.py │ │ ├── scheduler.py │ │ ├── session_status_check │ │ │ └── stage.py │ │ ├── stage.py │ │ ├── waking_check │ │ │ └── stage.py │ │ └── whitelist_check │ │ │ └── stage.py │ ├── platform │ │ ├── __init__.py │ │ ├── astr_message_event.py │ │ ├── astrbot_message.py │ │ ├── manager.py │ │ ├── message_session.py │ │ ├── message_type.py │ │ ├── platform.py │ │ ├── platform_metadata.py │ │ ├── register.py │ │ └── sources │ │ │ ├── aiocqhttp │ │ │ ├── aiocqhttp_message_event.py │ │ │ └── aiocqhttp_platform_adapter.py │ │ │ ├── dingtalk │ │ │ ├── dingtalk_adapter.py │ │ │ └── dingtalk_event.py │ │ │ ├── discord │ │ │ ├── client.py │ │ │ ├── components.py │ │ │ ├── discord_platform_adapter.py │ │ │ └── discord_platform_event.py │ │ │ ├── lark │ │ │ ├── lark_adapter.py │ │ │ └── lark_event.py │ │ │ ├── misskey │ │ │ ├── misskey_adapter.py │ │ │ ├── misskey_api.py │ │ │ ├── misskey_event.py │ │ │ └── misskey_utils.py │ │ │ ├── qqofficial │ │ │ ├── qqofficial_message_event.py │ │ │ └── qqofficial_platform_adapter.py │ │ │ ├── qqofficial_webhook │ │ │ ├── qo_webhook_adapter.py │ │ │ ├── qo_webhook_event.py │ │ │ └── qo_webhook_server.py │ │ │ ├── satori │ │ │ ├── satori_adapter.py │ │ │ └── satori_event.py │ │ │ ├── slack │ │ │ ├── client.py │ │ │ ├── slack_adapter.py │ │ │ └── slack_event.py │ │ │ ├── telegram │ │ │ ├── tg_adapter.py │ │ │ └── tg_event.py │ │ │ ├── webchat │ │ │ ├── webchat_adapter.py │ │ │ ├── webchat_event.py │ │ │ └── webchat_queue_mgr.py │ │ │ ├── wechatpadpro │ │ │ ├── wechatpadpro_adapter.py │ │ │ ├── wechatpadpro_message_event.py │ │ │ └── xml_data_parser.py │ │ │ ├── wecom │ │ │ ├── wecom_adapter.py │ │ │ ├── wecom_event.py │ │ │ ├── wecom_kf.py │ │ │ └── wecom_kf_message.py │ │ │ ├── wecom_ai_bot │ │ │ ├── WXBizJsonMsgCrypt.py │ │ │ ├── __init__.py │ │ │ ├── ierror.py │ │ │ ├── wecomai_adapter.py │ │ │ ├── wecomai_api.py │ │ │ ├── wecomai_event.py │ │ │ ├── wecomai_queue_mgr.py │ │ │ ├── wecomai_server.py │ │ │ └── wecomai_utils.py │ │ │ └── weixin_official_account │ │ │ ├── weixin_offacc_adapter.py │ │ │ └── weixin_offacc_event.py │ ├── platform_message_history_mgr.py │ ├── provider │ │ ├── __init__.py │ │ ├── entites.py │ │ ├── entities.py │ │ ├── func_tool_manager.py │ │ ├── manager.py │ │ ├── provider.py │ │ ├── register.py │ │ └── sources │ │ │ ├── anthropic_source.py │ │ │ ├── azure_tts_source.py │ │ │ ├── bailian_rerank_source.py │ │ │ ├── dashscope_tts.py │ │ │ ├── edge_tts_source.py │ │ │ ├── fishaudio_tts_api_source.py │ │ │ ├── gemini_embedding_source.py │ │ │ ├── gemini_source.py │ │ │ ├── gemini_tts_source.py │ │ │ ├── groq_source.py │ │ │ ├── gsv_selfhosted_source.py │ │ │ ├── gsvi_tts_source.py │ │ │ ├── minimax_tts_api_source.py │ │ │ ├── openai_embedding_source.py │ │ │ ├── openai_source.py │ │ │ ├── openai_tts_api_source.py │ │ │ ├── sensevoice_selfhosted_source.py │ │ │ ├── vllm_rerank_source.py │ │ │ ├── volcengine_tts.py │ │ │ ├── whisper_api_source.py │ │ │ ├── whisper_selfhosted_source.py │ │ │ ├── xinference_rerank_source.py │ │ │ ├── xinference_stt_provider.py │ │ │ └── zhipu_source.py │ ├── star │ │ ├── README.md │ │ ├── __init__.py │ │ ├── config.py │ │ ├── context.py │ │ ├── filter │ │ │ ├── __init__.py │ │ │ ├── command.py │ │ │ ├── command_group.py │ │ │ ├── custom_filter.py │ │ │ ├── event_message_type.py │ │ │ ├── permission.py │ │ │ ├── platform_adapter_type.py │ │ │ └── regex.py │ │ ├── register │ │ │ ├── __init__.py │ │ │ ├── star.py │ │ │ └── star_handler.py │ │ ├── session_llm_manager.py │ │ ├── session_plugin_manager.py │ │ ├── star.py │ │ ├── star_handler.py │ │ ├── star_manager.py │ │ ├── star_tools.py │ │ └── updator.py │ ├── umop_config_router.py │ ├── updator.py │ ├── utils │ │ ├── astrbot_path.py │ │ ├── command_parser.py │ │ ├── file_extract.py │ │ ├── io.py │ │ ├── log_pipe.py │ │ ├── metrics.py │ │ ├── migra_helper.py │ │ ├── path_util.py │ │ ├── pip_installer.py │ │ ├── session_lock.py │ │ ├── session_waiter.py │ │ ├── shared_preferences.py │ │ ├── t2i │ │ │ ├── __init__.py │ │ │ ├── local_strategy.py │ │ │ ├── network_strategy.py │ │ │ ├── renderer.py │ │ │ ├── template │ │ │ │ ├── astrbot_powershell.html │ │ │ │ └── base.html │ │ │ └── template_manager.py │ │ ├── tencent_record_helper.py │ │ ├── version_comparator.py │ │ └── webhook_utils.py │ └── zip_updator.py └── dashboard │ ├── routes │ ├── __init__.py │ ├── auth.py │ ├── chat.py │ ├── config.py │ ├── conversation.py │ ├── file.py │ ├── knowledge_base.py │ ├── log.py │ ├── persona.py │ ├── platform.py │ ├── plugin.py │ ├── route.py │ ├── session_management.py │ ├── stat.py │ ├── static_file.py │ ├── t2i.py │ ├── tools.py │ └── update.py │ ├── server.py │ └── utils.py ├── changelogs ├── v3.4.0.md ├── v3.4.1.md ├── v3.4.10.md ├── v3.4.11.md ├── v3.4.12.md ├── v3.4.13.md ├── v3.4.14.md ├── v3.4.15.md ├── v3.4.16.md ├── v3.4.17.md ├── v3.4.18.md ├── v3.4.19.md ├── v3.4.20.md ├── v3.4.21.md ├── v3.4.22.md ├── v3.4.23.md ├── v3.4.24.md ├── v3.4.25.md ├── v3.4.26.md ├── v3.4.27.md ├── v3.4.28.md ├── v3.4.29.md ├── v3.4.3.md ├── v3.4.30.md ├── v3.4.31.md ├── v3.4.32.md ├── v3.4.33.md ├── v3.4.35.md ├── v3.4.36.md ├── v3.4.37.md ├── v3.4.38.md ├── v3.4.39.md ├── v3.4.4.md ├── v3.4.5.md ├── v3.4.6.md ├── v3.4.7.md ├── v3.4.8.md ├── v3.4.9.md ├── v3.5.0.md ├── v3.5.1.md ├── v3.5.10.md ├── v3.5.11.md ├── v3.5.12.md ├── v3.5.13.md ├── v3.5.14.md ├── v3.5.15.md ├── v3.5.16.md ├── v3.5.17.md ├── v3.5.18.md ├── v3.5.19.md ├── v3.5.2.md ├── v3.5.20.md ├── v3.5.21.md ├── v3.5.22.md ├── v3.5.23.md ├── v3.5.24.md ├── v3.5.25.md ├── v3.5.26.md ├── v3.5.27.md ├── v3.5.3.1.md ├── v3.5.3.2.md ├── v3.5.3.md ├── v3.5.4.md ├── v3.5.5.md ├── v3.5.6.md ├── v3.5.7.md ├── v3.5.8.md ├── v3.5.9.md ├── v4.0.0-beta.3.md ├── v4.0.0-beta.4.md ├── v4.0.0-beta.5.md ├── v4.0.0.md ├── v4.1.0.md ├── v4.1.1.md ├── v4.1.2.md ├── v4.1.3.md ├── v4.1.4.md ├── v4.1.5.md ├── v4.1.6.md ├── v4.1.7.md ├── v4.2.0.md ├── v4.2.1.md ├── v4.3.0.md ├── v4.3.1.md ├── v4.3.2.md ├── v4.3.3.md ├── v4.3.5.md ├── v4.5.0.md ├── v4.5.1.md ├── v4.5.2.md ├── v4.5.3.md ├── v4.5.4.md ├── v4.5.5.md ├── v4.5.6.md ├── v4.5.7.md ├── v4.5.8.md ├── v4.6.0.md ├── v4.6.1.md ├── v4.7.0.md ├── v4.7.1.md ├── v4.7.3.md └── v4.7.4.md ├── compose.yml ├── dashboard ├── .gitignore ├── LICENSE ├── README.md ├── env.d.ts ├── index.html ├── package.json ├── public │ ├── _redirects │ └── favicon.svg ├── src │ ├── App.vue │ ├── assets │ │ └── images │ │ │ ├── astrbot_banner.png │ │ │ ├── astrbot_logo_mini.webp │ │ │ ├── icon-no-shadow.svg │ │ │ ├── platform_logos │ │ │ ├── dingtalk.svg │ │ │ ├── discord.svg │ │ │ ├── kook.png │ │ │ ├── lark.png │ │ │ ├── misskey.png │ │ │ ├── qq.png │ │ │ ├── satori.png │ │ │ ├── slack.svg │ │ │ ├── telegram.svg │ │ │ ├── vocechat.png │ │ │ ├── wechat.png │ │ │ └── wecom.png │ │ │ └── plugin_icon.png │ ├── components │ │ ├── ConfirmDialog.vue │ │ ├── chat │ │ │ ├── Chat.vue │ │ │ ├── ChatInput.vue │ │ │ ├── ConfigSelector.vue │ │ │ ├── ConversationSidebar.vue │ │ │ ├── MessageList.vue │ │ │ ├── ProviderModelSelector.vue │ │ │ └── StandaloneChat.vue │ │ ├── config │ │ │ └── AstrBotCoreConfigWrapper.vue │ │ ├── platform │ │ │ └── AddNewPlatform.vue │ │ ├── provider │ │ │ └── AddNewProvider.vue │ │ └── shared │ │ │ ├── AstrBotConfig.vue │ │ │ ├── AstrBotConfigV4.vue │ │ │ ├── ConsoleDisplayer.vue │ │ │ ├── ExtensionCard.vue │ │ │ ├── ItemCard.vue │ │ │ ├── ItemCardGrid.vue │ │ │ ├── KnowledgeBaseSelector.vue │ │ │ ├── LanguageSwitcher.vue │ │ │ ├── ListConfigItem.vue │ │ │ ├── Logo.vue │ │ │ ├── MigrationDialog.vue │ │ │ ├── ObjectEditor.vue │ │ │ ├── PersonaForm.vue │ │ │ ├── PersonaSelector.vue │ │ │ ├── PluginSetSelector.vue │ │ │ ├── ProviderSelector.vue │ │ │ ├── ProxySelector.vue │ │ │ ├── ReadmeDialog.vue │ │ │ ├── SidebarCustomizer.vue │ │ │ ├── T2ITemplateEditor.vue │ │ │ ├── UninstallConfirmDialog.vue │ │ │ └── WaitingForRestart.vue │ ├── composables │ │ ├── useConversations.ts │ │ ├── useMediaHandling.ts │ │ ├── useMessages.ts │ │ ├── useRecording.ts │ │ └── useSessions.ts │ ├── config.ts │ ├── i18n │ │ ├── composables.ts │ │ ├── loader.ts │ │ ├── locales │ │ │ ├── en-US │ │ │ │ ├── core │ │ │ │ │ ├── actions.json │ │ │ │ │ ├── common.json │ │ │ │ │ ├── header.json │ │ │ │ │ ├── navigation.json │ │ │ │ │ ├── shared.json │ │ │ │ │ └── status.json │ │ │ │ ├── features │ │ │ │ │ ├── about.json │ │ │ │ │ ├── alkaid │ │ │ │ │ │ ├── index.json │ │ │ │ │ │ ├── knowledge-base.json │ │ │ │ │ │ └── memory.json │ │ │ │ │ ├── auth.json │ │ │ │ │ ├── chart.json │ │ │ │ │ ├── chat.json │ │ │ │ │ ├── config-metadata.json │ │ │ │ │ ├── config.json │ │ │ │ │ ├── console.json │ │ │ │ │ ├── conversation.json │ │ │ │ │ ├── dashboard.json │ │ │ │ │ ├── extension.json │ │ │ │ │ ├── knowledge-base │ │ │ │ │ │ ├── detail.json │ │ │ │ │ │ ├── document.json │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── migration.json │ │ │ │ │ ├── persona.json │ │ │ │ │ ├── platform.json │ │ │ │ │ ├── provider.json │ │ │ │ │ ├── session-management.json │ │ │ │ │ ├── settings.json │ │ │ │ │ └── tool-use.json │ │ │ │ └── messages │ │ │ │ │ ├── errors.json │ │ │ │ │ ├── success.json │ │ │ │ │ └── validation.json │ │ │ └── zh-CN │ │ │ │ ├── core │ │ │ │ ├── actions.json │ │ │ │ ├── common.json │ │ │ │ ├── header.json │ │ │ │ ├── navigation.json │ │ │ │ ├── shared.json │ │ │ │ └── status.json │ │ │ │ ├── features │ │ │ │ ├── about.json │ │ │ │ ├── alkaid │ │ │ │ │ ├── index.json │ │ │ │ │ ├── knowledge-base.json │ │ │ │ │ └── memory.json │ │ │ │ ├── auth.json │ │ │ │ ├── chart.json │ │ │ │ ├── chat.json │ │ │ │ ├── config-metadata.json │ │ │ │ ├── config.json │ │ │ │ ├── console.json │ │ │ │ ├── conversation.json │ │ │ │ ├── dashboard.json │ │ │ │ ├── extension.json │ │ │ │ ├── knowledge-base │ │ │ │ │ ├── detail.json │ │ │ │ │ ├── document.json │ │ │ │ │ └── index.json │ │ │ │ ├── migration.json │ │ │ │ ├── persona.json │ │ │ │ ├── platform.json │ │ │ │ ├── provider.json │ │ │ │ ├── session-management.json │ │ │ │ ├── settings.json │ │ │ │ └── tool-use.json │ │ │ │ └── messages │ │ │ │ ├── errors.json │ │ │ │ ├── success.json │ │ │ │ └── validation.json │ │ ├── tools │ │ │ └── index.ts │ │ ├── translations.ts │ │ ├── types.ts │ │ └── validator.ts │ ├── layouts │ │ ├── blank │ │ │ └── BlankLayout.vue │ │ └── full │ │ │ ├── FullLayout.vue │ │ │ ├── vertical-header │ │ │ └── VerticalHeader.vue │ │ │ └── vertical-sidebar │ │ │ ├── NavItem.vue │ │ │ ├── VerticalSidebar.vue │ │ │ └── sidebarItem.ts │ ├── main.ts │ ├── plugins │ │ ├── confirmPlugin.ts │ │ └── vuetify.ts │ ├── router │ │ ├── AuthRoutes.ts │ │ ├── ChatBoxRoutes.ts │ │ ├── MainRoutes.ts │ │ └── index.ts │ ├── scss │ │ ├── _override.scss │ │ ├── _variables.scss │ │ ├── components │ │ │ ├── _VButtons.scss │ │ │ ├── _VCard.scss │ │ │ ├── _VField.scss │ │ │ ├── _VInput.scss │ │ │ ├── _VNavigationDrawer.scss │ │ │ ├── _VScrollbar.scss │ │ │ ├── _VShadow.scss │ │ │ ├── _VTabs.scss │ │ │ └── _VTextField.scss │ │ ├── layout │ │ │ ├── _container.scss │ │ │ └── _sidebar.scss │ │ ├── pages │ │ │ └── _dashboards.scss │ │ └── style.scss │ ├── stores │ │ ├── auth.ts │ │ ├── common.js │ │ ├── customizer.ts │ │ └── toast.js │ ├── theme │ │ ├── DarkTheme.ts │ │ └── LightTheme.ts │ ├── types │ │ ├── themeTypes │ │ │ └── ThemeType.ts │ │ ├── vue3-print-nb.d.ts │ │ └── vue_tabler_icon.d.ts │ ├── utils │ │ ├── platformUtils.js │ │ ├── providerUtils.js │ │ ├── sidebarCustomization.js │ │ └── toast.js │ └── views │ │ ├── AboutPage.vue │ │ ├── AlkaidPage.vue │ │ ├── ChatBoxPage.vue │ │ ├── ChatPage.vue │ │ ├── ConfigPage.vue │ │ ├── ConsolePage.vue │ │ ├── ConversationPage.vue │ │ ├── ExtensionPage.vue │ │ ├── PersonaPage.vue │ │ ├── PlatformPage.vue │ │ ├── ProviderPage.vue │ │ ├── SessionManagementPage.vue │ │ ├── Settings.vue │ │ ├── ToolUsePage.vue │ │ ├── alkaid │ │ ├── KnowledgeBase.vue │ │ ├── LongTermMemory.vue │ │ └── Other.vue │ │ ├── authentication │ │ ├── auth │ │ │ └── LoginPage.vue │ │ └── authForms │ │ │ └── AuthLogin.vue │ │ ├── dashboards │ │ └── default │ │ │ ├── DefaultDashboard.vue │ │ │ └── components │ │ │ ├── MemoryUsage.vue │ │ │ ├── MessageStat.vue │ │ │ ├── OnlinePlatform.vue │ │ │ ├── OnlineTime.vue │ │ │ ├── PlatformStat.vue │ │ │ ├── RunningTime.vue │ │ │ └── TotalMessage.vue │ │ └── knowledge-base │ │ ├── DocumentDetail.vue │ │ ├── KBDetail.vue │ │ ├── KBList.vue │ │ ├── components │ │ ├── DocumentsTab.vue │ │ ├── RetrievalTab.vue │ │ ├── SettingsTab.vue │ │ └── TavilyKeyDialog.vue │ │ └── index.vue ├── tsconfig.json ├── tsconfig.vite-config.json └── vite.config.ts ├── k8s ├── astrbot │ ├── 00-namespace.yaml │ ├── 01-pvc.yaml │ ├── 02-deployment.yaml │ ├── 03-service-nodeport.yaml │ └── 04-service-loadbalancer.yaml └── astrbot_with_napcat │ ├── 00-namespace.yaml │ ├── 01-pvc.yaml │ ├── 02-deployment.yaml │ ├── 03-service-nodeport.yaml │ └── 04-service-loadbalancer.yaml ├── main.py ├── packages ├── astrbot │ ├── commands │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── alter_cmd.py │ │ ├── conversation.py │ │ ├── help.py │ │ ├── llm.py │ │ ├── persona.py │ │ ├── plugin.py │ │ ├── provider.py │ │ ├── setunset.py │ │ ├── sid.py │ │ ├── t2i.py │ │ ├── tool.py │ │ ├── tts.py │ │ └── utils │ │ │ └── rst_scene.py │ ├── long_term_memory.py │ ├── main.py │ ├── metadata.yaml │ └── process_llm_request.py ├── python_interpreter │ ├── main.py │ ├── metadata.yaml │ ├── requirements.txt │ └── shared │ │ └── api.py ├── reminder │ ├── main.py │ └── metadata.yaml ├── session_controller │ ├── main.py │ └── metadata.yaml └── web_searcher │ ├── engines │ ├── __init__.py │ ├── bing.py │ └── sogo.py │ ├── main.py │ └── metadata.yaml ├── pyproject.toml ├── requirements.txt ├── samples └── stt_health_check.wav └── tests ├── test_dashboard.py ├── test_main.py ├── test_plugin_manager.py └── test_security_fixes.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/PLUGIN_PUBLISH.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/.github/ISSUE_TEMPLATE/PLUGIN_PUBLISH.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/.github/auto_assign.yml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/.github/workflows/auto_release.yml -------------------------------------------------------------------------------- /.github/workflows/code-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/.github/workflows/code-format.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/coverage_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/.github/workflows/coverage_test.yml -------------------------------------------------------------------------------- /.github/workflows/dashboard_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/.github/workflows/dashboard_ci.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.10 -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/README_en.md -------------------------------------------------------------------------------- /README_fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/README_fr.md -------------------------------------------------------------------------------- /README_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/README_ja.md -------------------------------------------------------------------------------- /README_ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/README_ru.md -------------------------------------------------------------------------------- /README_zh-TW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/README_zh-TW.md -------------------------------------------------------------------------------- /astrbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/__init__.py -------------------------------------------------------------------------------- /astrbot/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/api/__init__.py -------------------------------------------------------------------------------- /astrbot/api/all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/api/all.py -------------------------------------------------------------------------------- /astrbot/api/event/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/api/event/__init__.py -------------------------------------------------------------------------------- /astrbot/api/event/filter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/api/event/filter/__init__.py -------------------------------------------------------------------------------- /astrbot/api/message_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/api/message_components.py -------------------------------------------------------------------------------- /astrbot/api/platform/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/api/platform/__init__.py -------------------------------------------------------------------------------- /astrbot/api/provider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/api/provider/__init__.py -------------------------------------------------------------------------------- /astrbot/api/star/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/api/star/__init__.py -------------------------------------------------------------------------------- /astrbot/api/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/api/util/__init__.py -------------------------------------------------------------------------------- /astrbot/cli/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "4.7.4" 2 | -------------------------------------------------------------------------------- /astrbot/cli/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/cli/__main__.py -------------------------------------------------------------------------------- /astrbot/cli/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/cli/commands/__init__.py -------------------------------------------------------------------------------- /astrbot/cli/commands/cmd_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/cli/commands/cmd_conf.py -------------------------------------------------------------------------------- /astrbot/cli/commands/cmd_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/cli/commands/cmd_init.py -------------------------------------------------------------------------------- /astrbot/cli/commands/cmd_plug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/cli/commands/cmd_plug.py -------------------------------------------------------------------------------- /astrbot/cli/commands/cmd_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/cli/commands/cmd_run.py -------------------------------------------------------------------------------- /astrbot/cli/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/cli/utils/__init__.py -------------------------------------------------------------------------------- /astrbot/cli/utils/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/cli/utils/basic.py -------------------------------------------------------------------------------- /astrbot/cli/utils/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/cli/utils/plugin.py -------------------------------------------------------------------------------- /astrbot/cli/utils/version_comparator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/cli/utils/version_comparator.py -------------------------------------------------------------------------------- /astrbot/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/__init__.py -------------------------------------------------------------------------------- /astrbot/core/agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/agent/agent.py -------------------------------------------------------------------------------- /astrbot/core/agent/handoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/agent/handoff.py -------------------------------------------------------------------------------- /astrbot/core/agent/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/agent/hooks.py -------------------------------------------------------------------------------- /astrbot/core/agent/mcp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/agent/mcp_client.py -------------------------------------------------------------------------------- /astrbot/core/agent/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/agent/message.py -------------------------------------------------------------------------------- /astrbot/core/agent/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/agent/response.py -------------------------------------------------------------------------------- /astrbot/core/agent/run_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/agent/run_context.py -------------------------------------------------------------------------------- /astrbot/core/agent/runners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/agent/runners/__init__.py -------------------------------------------------------------------------------- /astrbot/core/agent/runners/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/agent/runners/base.py -------------------------------------------------------------------------------- /astrbot/core/agent/runners/coze/coze_agent_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/agent/runners/coze/coze_agent_runner.py -------------------------------------------------------------------------------- /astrbot/core/agent/runners/coze/coze_api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/agent/runners/coze/coze_api_client.py -------------------------------------------------------------------------------- /astrbot/core/agent/runners/dashscope/dashscope_agent_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/agent/runners/dashscope/dashscope_agent_runner.py -------------------------------------------------------------------------------- /astrbot/core/agent/runners/dify/dify_agent_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/agent/runners/dify/dify_agent_runner.py -------------------------------------------------------------------------------- /astrbot/core/agent/runners/dify/dify_api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/agent/runners/dify/dify_api_client.py -------------------------------------------------------------------------------- /astrbot/core/agent/runners/tool_loop_agent_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/agent/runners/tool_loop_agent_runner.py -------------------------------------------------------------------------------- /astrbot/core/agent/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/agent/tool.py -------------------------------------------------------------------------------- /astrbot/core/agent/tool_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/agent/tool_executor.py -------------------------------------------------------------------------------- /astrbot/core/astr_agent_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/astr_agent_context.py -------------------------------------------------------------------------------- /astrbot/core/astr_agent_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/astr_agent_hooks.py -------------------------------------------------------------------------------- /astrbot/core/astr_agent_run_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/astr_agent_run_util.py -------------------------------------------------------------------------------- /astrbot/core/astr_agent_tool_exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/astr_agent_tool_exec.py -------------------------------------------------------------------------------- /astrbot/core/astrbot_config_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/astrbot_config_mgr.py -------------------------------------------------------------------------------- /astrbot/core/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/config/__init__.py -------------------------------------------------------------------------------- /astrbot/core/config/astrbot_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/config/astrbot_config.py -------------------------------------------------------------------------------- /astrbot/core/config/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/config/default.py -------------------------------------------------------------------------------- /astrbot/core/config/i18n_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/config/i18n_utils.py -------------------------------------------------------------------------------- /astrbot/core/conversation_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/conversation_mgr.py -------------------------------------------------------------------------------- /astrbot/core/core_lifecycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/core_lifecycle.py -------------------------------------------------------------------------------- /astrbot/core/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/db/__init__.py -------------------------------------------------------------------------------- /astrbot/core/db/migration/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/db/migration/helper.py -------------------------------------------------------------------------------- /astrbot/core/db/migration/migra_3_to_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/db/migration/migra_3_to_4.py -------------------------------------------------------------------------------- /astrbot/core/db/migration/migra_45_to_46.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/db/migration/migra_45_to_46.py -------------------------------------------------------------------------------- /astrbot/core/db/migration/migra_webchat_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/db/migration/migra_webchat_session.py -------------------------------------------------------------------------------- /astrbot/core/db/migration/shared_preferences_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/db/migration/shared_preferences_v3.py -------------------------------------------------------------------------------- /astrbot/core/db/migration/sqlite_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/db/migration/sqlite_v3.py -------------------------------------------------------------------------------- /astrbot/core/db/po.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/db/po.py -------------------------------------------------------------------------------- /astrbot/core/db/sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/db/sqlite.py -------------------------------------------------------------------------------- /astrbot/core/db/vec_db/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/db/vec_db/base.py -------------------------------------------------------------------------------- /astrbot/core/db/vec_db/faiss_impl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/db/vec_db/faiss_impl/__init__.py -------------------------------------------------------------------------------- /astrbot/core/db/vec_db/faiss_impl/document_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/db/vec_db/faiss_impl/document_storage.py -------------------------------------------------------------------------------- /astrbot/core/db/vec_db/faiss_impl/embedding_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/db/vec_db/faiss_impl/embedding_storage.py -------------------------------------------------------------------------------- /astrbot/core/db/vec_db/faiss_impl/sqlite_init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/db/vec_db/faiss_impl/sqlite_init.sql -------------------------------------------------------------------------------- /astrbot/core/db/vec_db/faiss_impl/vec_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/db/vec_db/faiss_impl/vec_db.py -------------------------------------------------------------------------------- /astrbot/core/event_bus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/event_bus.py -------------------------------------------------------------------------------- /astrbot/core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/exceptions.py -------------------------------------------------------------------------------- /astrbot/core/file_token_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/file_token_service.py -------------------------------------------------------------------------------- /astrbot/core/initial_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/initial_loader.py -------------------------------------------------------------------------------- /astrbot/core/knowledge_base/chunking/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/knowledge_base/chunking/__init__.py -------------------------------------------------------------------------------- /astrbot/core/knowledge_base/chunking/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/knowledge_base/chunking/base.py -------------------------------------------------------------------------------- /astrbot/core/knowledge_base/chunking/fixed_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/knowledge_base/chunking/fixed_size.py -------------------------------------------------------------------------------- /astrbot/core/knowledge_base/chunking/recursive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/knowledge_base/chunking/recursive.py -------------------------------------------------------------------------------- /astrbot/core/knowledge_base/kb_db_sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/knowledge_base/kb_db_sqlite.py -------------------------------------------------------------------------------- /astrbot/core/knowledge_base/kb_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/knowledge_base/kb_helper.py -------------------------------------------------------------------------------- /astrbot/core/knowledge_base/kb_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/knowledge_base/kb_mgr.py -------------------------------------------------------------------------------- /astrbot/core/knowledge_base/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/knowledge_base/models.py -------------------------------------------------------------------------------- /astrbot/core/knowledge_base/parsers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/knowledge_base/parsers/__init__.py -------------------------------------------------------------------------------- /astrbot/core/knowledge_base/parsers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/knowledge_base/parsers/base.py -------------------------------------------------------------------------------- /astrbot/core/knowledge_base/parsers/markitdown_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/knowledge_base/parsers/markitdown_parser.py -------------------------------------------------------------------------------- /astrbot/core/knowledge_base/parsers/pdf_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/knowledge_base/parsers/pdf_parser.py -------------------------------------------------------------------------------- /astrbot/core/knowledge_base/parsers/text_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/knowledge_base/parsers/text_parser.py -------------------------------------------------------------------------------- /astrbot/core/knowledge_base/parsers/url_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/knowledge_base/parsers/url_parser.py -------------------------------------------------------------------------------- /astrbot/core/knowledge_base/parsers/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/knowledge_base/parsers/util.py -------------------------------------------------------------------------------- /astrbot/core/knowledge_base/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/knowledge_base/prompts.py -------------------------------------------------------------------------------- /astrbot/core/knowledge_base/retrieval/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/knowledge_base/retrieval/__init__.py -------------------------------------------------------------------------------- /astrbot/core/knowledge_base/retrieval/hit_stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/knowledge_base/retrieval/hit_stopwords.txt -------------------------------------------------------------------------------- /astrbot/core/knowledge_base/retrieval/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/knowledge_base/retrieval/manager.py -------------------------------------------------------------------------------- /astrbot/core/knowledge_base/retrieval/rank_fusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/knowledge_base/retrieval/rank_fusion.py -------------------------------------------------------------------------------- /astrbot/core/knowledge_base/retrieval/sparse_retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/knowledge_base/retrieval/sparse_retriever.py -------------------------------------------------------------------------------- /astrbot/core/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/log.py -------------------------------------------------------------------------------- /astrbot/core/message/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/message/components.py -------------------------------------------------------------------------------- /astrbot/core/message/message_event_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/message/message_event_result.py -------------------------------------------------------------------------------- /astrbot/core/persona_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/persona_mgr.py -------------------------------------------------------------------------------- /astrbot/core/pipeline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/pipeline/__init__.py -------------------------------------------------------------------------------- /astrbot/core/pipeline/content_safety_check/stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/pipeline/content_safety_check/stage.py -------------------------------------------------------------------------------- /astrbot/core/pipeline/content_safety_check/strategies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/pipeline/content_safety_check/strategies/__init__.py -------------------------------------------------------------------------------- /astrbot/core/pipeline/content_safety_check/strategies/baidu_aip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/pipeline/content_safety_check/strategies/baidu_aip.py -------------------------------------------------------------------------------- /astrbot/core/pipeline/content_safety_check/strategies/keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/pipeline/content_safety_check/strategies/keywords.py -------------------------------------------------------------------------------- /astrbot/core/pipeline/content_safety_check/strategies/strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/pipeline/content_safety_check/strategies/strategy.py -------------------------------------------------------------------------------- /astrbot/core/pipeline/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/pipeline/context.py -------------------------------------------------------------------------------- /astrbot/core/pipeline/context_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/pipeline/context_utils.py -------------------------------------------------------------------------------- /astrbot/core/pipeline/preprocess_stage/stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/pipeline/preprocess_stage/stage.py -------------------------------------------------------------------------------- /astrbot/core/pipeline/process_stage/method/agent_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/pipeline/process_stage/method/agent_request.py -------------------------------------------------------------------------------- /astrbot/core/pipeline/process_stage/method/agent_sub_stages/internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/pipeline/process_stage/method/agent_sub_stages/internal.py -------------------------------------------------------------------------------- /astrbot/core/pipeline/process_stage/method/agent_sub_stages/third_party.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/pipeline/process_stage/method/agent_sub_stages/third_party.py -------------------------------------------------------------------------------- /astrbot/core/pipeline/process_stage/method/star_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/pipeline/process_stage/method/star_request.py -------------------------------------------------------------------------------- /astrbot/core/pipeline/process_stage/stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/pipeline/process_stage/stage.py -------------------------------------------------------------------------------- /astrbot/core/pipeline/process_stage/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/pipeline/process_stage/utils.py -------------------------------------------------------------------------------- /astrbot/core/pipeline/rate_limit_check/stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/pipeline/rate_limit_check/stage.py -------------------------------------------------------------------------------- /astrbot/core/pipeline/respond/stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/pipeline/respond/stage.py -------------------------------------------------------------------------------- /astrbot/core/pipeline/result_decorate/stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/pipeline/result_decorate/stage.py -------------------------------------------------------------------------------- /astrbot/core/pipeline/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/pipeline/scheduler.py -------------------------------------------------------------------------------- /astrbot/core/pipeline/session_status_check/stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/pipeline/session_status_check/stage.py -------------------------------------------------------------------------------- /astrbot/core/pipeline/stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/pipeline/stage.py -------------------------------------------------------------------------------- /astrbot/core/pipeline/waking_check/stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/pipeline/waking_check/stage.py -------------------------------------------------------------------------------- /astrbot/core/pipeline/whitelist_check/stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/pipeline/whitelist_check/stage.py -------------------------------------------------------------------------------- /astrbot/core/platform/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/__init__.py -------------------------------------------------------------------------------- /astrbot/core/platform/astr_message_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/astr_message_event.py -------------------------------------------------------------------------------- /astrbot/core/platform/astrbot_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/astrbot_message.py -------------------------------------------------------------------------------- /astrbot/core/platform/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/manager.py -------------------------------------------------------------------------------- /astrbot/core/platform/message_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/message_session.py -------------------------------------------------------------------------------- /astrbot/core/platform/message_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/message_type.py -------------------------------------------------------------------------------- /astrbot/core/platform/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/platform.py -------------------------------------------------------------------------------- /astrbot/core/platform/platform_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/platform_metadata.py -------------------------------------------------------------------------------- /astrbot/core/platform/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/register.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/dingtalk/dingtalk_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/dingtalk/dingtalk_event.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/discord/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/discord/client.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/discord/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/discord/components.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/discord/discord_platform_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/discord/discord_platform_adapter.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/discord/discord_platform_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/discord/discord_platform_event.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/lark/lark_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/lark/lark_adapter.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/lark/lark_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/lark/lark_event.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/misskey/misskey_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/misskey/misskey_adapter.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/misskey/misskey_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/misskey/misskey_api.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/misskey/misskey_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/misskey/misskey_event.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/misskey/misskey_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/misskey/misskey_utils.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_event.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/satori/satori_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/satori/satori_adapter.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/satori/satori_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/satori/satori_event.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/slack/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/slack/client.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/slack/slack_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/slack/slack_adapter.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/slack/slack_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/slack/slack_event.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/telegram/tg_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/telegram/tg_adapter.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/telegram/tg_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/telegram/tg_event.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/webchat/webchat_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/webchat/webchat_adapter.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/webchat/webchat_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/webchat/webchat_event.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/webchat/webchat_queue_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/webchat/webchat_queue_mgr.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/wechatpadpro/wechatpadpro_message_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/wechatpadpro/wechatpadpro_message_event.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/wechatpadpro/xml_data_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/wechatpadpro/xml_data_parser.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/wecom/wecom_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/wecom/wecom_adapter.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/wecom/wecom_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/wecom/wecom_event.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/wecom/wecom_kf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/wecom/wecom_kf.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/wecom/wecom_kf_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/wecom/wecom_kf_message.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/wecom_ai_bot/WXBizJsonMsgCrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/wecom_ai_bot/WXBizJsonMsgCrypt.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/wecom_ai_bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/wecom_ai_bot/__init__.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/wecom_ai_bot/ierror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/wecom_ai_bot/ierror.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/wecom_ai_bot/wecomai_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/wecom_ai_bot/wecomai_adapter.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/wecom_ai_bot/wecomai_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/wecom_ai_bot/wecomai_api.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/wecom_ai_bot/wecomai_queue_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/wecom_ai_bot/wecomai_queue_mgr.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/wecom_ai_bot/wecomai_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/wecom_ai_bot/wecomai_server.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/wecom_ai_bot/wecomai_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/wecom_ai_bot/wecomai_utils.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py -------------------------------------------------------------------------------- /astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py -------------------------------------------------------------------------------- /astrbot/core/platform_message_history_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/platform_message_history_mgr.py -------------------------------------------------------------------------------- /astrbot/core/provider/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/__init__.py -------------------------------------------------------------------------------- /astrbot/core/provider/entites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/entites.py -------------------------------------------------------------------------------- /astrbot/core/provider/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/entities.py -------------------------------------------------------------------------------- /astrbot/core/provider/func_tool_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/func_tool_manager.py -------------------------------------------------------------------------------- /astrbot/core/provider/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/manager.py -------------------------------------------------------------------------------- /astrbot/core/provider/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/provider.py -------------------------------------------------------------------------------- /astrbot/core/provider/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/register.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/anthropic_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/anthropic_source.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/azure_tts_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/azure_tts_source.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/bailian_rerank_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/bailian_rerank_source.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/dashscope_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/dashscope_tts.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/edge_tts_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/edge_tts_source.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/fishaudio_tts_api_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/fishaudio_tts_api_source.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/gemini_embedding_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/gemini_embedding_source.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/gemini_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/gemini_source.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/gemini_tts_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/gemini_tts_source.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/groq_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/groq_source.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/gsv_selfhosted_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/gsv_selfhosted_source.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/gsvi_tts_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/gsvi_tts_source.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/minimax_tts_api_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/minimax_tts_api_source.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/openai_embedding_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/openai_embedding_source.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/openai_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/openai_source.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/openai_tts_api_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/openai_tts_api_source.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/sensevoice_selfhosted_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/sensevoice_selfhosted_source.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/vllm_rerank_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/vllm_rerank_source.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/volcengine_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/volcengine_tts.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/whisper_api_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/whisper_api_source.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/whisper_selfhosted_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/whisper_selfhosted_source.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/xinference_rerank_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/xinference_rerank_source.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/xinference_stt_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/xinference_stt_provider.py -------------------------------------------------------------------------------- /astrbot/core/provider/sources/zhipu_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/provider/sources/zhipu_source.py -------------------------------------------------------------------------------- /astrbot/core/star/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/star/README.md -------------------------------------------------------------------------------- /astrbot/core/star/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/star/__init__.py -------------------------------------------------------------------------------- /astrbot/core/star/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/star/config.py -------------------------------------------------------------------------------- /astrbot/core/star/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/star/context.py -------------------------------------------------------------------------------- /astrbot/core/star/filter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/star/filter/__init__.py -------------------------------------------------------------------------------- /astrbot/core/star/filter/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/star/filter/command.py -------------------------------------------------------------------------------- /astrbot/core/star/filter/command_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/star/filter/command_group.py -------------------------------------------------------------------------------- /astrbot/core/star/filter/custom_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/star/filter/custom_filter.py -------------------------------------------------------------------------------- /astrbot/core/star/filter/event_message_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/star/filter/event_message_type.py -------------------------------------------------------------------------------- /astrbot/core/star/filter/permission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/star/filter/permission.py -------------------------------------------------------------------------------- /astrbot/core/star/filter/platform_adapter_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/star/filter/platform_adapter_type.py -------------------------------------------------------------------------------- /astrbot/core/star/filter/regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/star/filter/regex.py -------------------------------------------------------------------------------- /astrbot/core/star/register/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/star/register/__init__.py -------------------------------------------------------------------------------- /astrbot/core/star/register/star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/star/register/star.py -------------------------------------------------------------------------------- /astrbot/core/star/register/star_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/star/register/star_handler.py -------------------------------------------------------------------------------- /astrbot/core/star/session_llm_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/star/session_llm_manager.py -------------------------------------------------------------------------------- /astrbot/core/star/session_plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/star/session_plugin_manager.py -------------------------------------------------------------------------------- /astrbot/core/star/star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/star/star.py -------------------------------------------------------------------------------- /astrbot/core/star/star_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/star/star_handler.py -------------------------------------------------------------------------------- /astrbot/core/star/star_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/star/star_manager.py -------------------------------------------------------------------------------- /astrbot/core/star/star_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/star/star_tools.py -------------------------------------------------------------------------------- /astrbot/core/star/updator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/star/updator.py -------------------------------------------------------------------------------- /astrbot/core/umop_config_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/umop_config_router.py -------------------------------------------------------------------------------- /astrbot/core/updator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/updator.py -------------------------------------------------------------------------------- /astrbot/core/utils/astrbot_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/utils/astrbot_path.py -------------------------------------------------------------------------------- /astrbot/core/utils/command_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/utils/command_parser.py -------------------------------------------------------------------------------- /astrbot/core/utils/file_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/utils/file_extract.py -------------------------------------------------------------------------------- /astrbot/core/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/utils/io.py -------------------------------------------------------------------------------- /astrbot/core/utils/log_pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/utils/log_pipe.py -------------------------------------------------------------------------------- /astrbot/core/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/utils/metrics.py -------------------------------------------------------------------------------- /astrbot/core/utils/migra_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/utils/migra_helper.py -------------------------------------------------------------------------------- /astrbot/core/utils/path_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/utils/path_util.py -------------------------------------------------------------------------------- /astrbot/core/utils/pip_installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/utils/pip_installer.py -------------------------------------------------------------------------------- /astrbot/core/utils/session_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/utils/session_lock.py -------------------------------------------------------------------------------- /astrbot/core/utils/session_waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/utils/session_waiter.py -------------------------------------------------------------------------------- /astrbot/core/utils/shared_preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/utils/shared_preferences.py -------------------------------------------------------------------------------- /astrbot/core/utils/t2i/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/utils/t2i/__init__.py -------------------------------------------------------------------------------- /astrbot/core/utils/t2i/local_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/utils/t2i/local_strategy.py -------------------------------------------------------------------------------- /astrbot/core/utils/t2i/network_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/utils/t2i/network_strategy.py -------------------------------------------------------------------------------- /astrbot/core/utils/t2i/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/utils/t2i/renderer.py -------------------------------------------------------------------------------- /astrbot/core/utils/t2i/template/astrbot_powershell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/utils/t2i/template/astrbot_powershell.html -------------------------------------------------------------------------------- /astrbot/core/utils/t2i/template/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/utils/t2i/template/base.html -------------------------------------------------------------------------------- /astrbot/core/utils/t2i/template_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/utils/t2i/template_manager.py -------------------------------------------------------------------------------- /astrbot/core/utils/tencent_record_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/utils/tencent_record_helper.py -------------------------------------------------------------------------------- /astrbot/core/utils/version_comparator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/utils/version_comparator.py -------------------------------------------------------------------------------- /astrbot/core/utils/webhook_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/utils/webhook_utils.py -------------------------------------------------------------------------------- /astrbot/core/zip_updator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/core/zip_updator.py -------------------------------------------------------------------------------- /astrbot/dashboard/routes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/dashboard/routes/__init__.py -------------------------------------------------------------------------------- /astrbot/dashboard/routes/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/dashboard/routes/auth.py -------------------------------------------------------------------------------- /astrbot/dashboard/routes/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/dashboard/routes/chat.py -------------------------------------------------------------------------------- /astrbot/dashboard/routes/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/dashboard/routes/config.py -------------------------------------------------------------------------------- /astrbot/dashboard/routes/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/dashboard/routes/conversation.py -------------------------------------------------------------------------------- /astrbot/dashboard/routes/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/dashboard/routes/file.py -------------------------------------------------------------------------------- /astrbot/dashboard/routes/knowledge_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/dashboard/routes/knowledge_base.py -------------------------------------------------------------------------------- /astrbot/dashboard/routes/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/dashboard/routes/log.py -------------------------------------------------------------------------------- /astrbot/dashboard/routes/persona.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/dashboard/routes/persona.py -------------------------------------------------------------------------------- /astrbot/dashboard/routes/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/dashboard/routes/platform.py -------------------------------------------------------------------------------- /astrbot/dashboard/routes/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/dashboard/routes/plugin.py -------------------------------------------------------------------------------- /astrbot/dashboard/routes/route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/dashboard/routes/route.py -------------------------------------------------------------------------------- /astrbot/dashboard/routes/session_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/dashboard/routes/session_management.py -------------------------------------------------------------------------------- /astrbot/dashboard/routes/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/dashboard/routes/stat.py -------------------------------------------------------------------------------- /astrbot/dashboard/routes/static_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/dashboard/routes/static_file.py -------------------------------------------------------------------------------- /astrbot/dashboard/routes/t2i.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/dashboard/routes/t2i.py -------------------------------------------------------------------------------- /astrbot/dashboard/routes/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/dashboard/routes/tools.py -------------------------------------------------------------------------------- /astrbot/dashboard/routes/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/dashboard/routes/update.py -------------------------------------------------------------------------------- /astrbot/dashboard/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/dashboard/server.py -------------------------------------------------------------------------------- /astrbot/dashboard/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/astrbot/dashboard/utils.py -------------------------------------------------------------------------------- /changelogs/v3.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.0.md -------------------------------------------------------------------------------- /changelogs/v3.4.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.1.md -------------------------------------------------------------------------------- /changelogs/v3.4.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.10.md -------------------------------------------------------------------------------- /changelogs/v3.4.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.11.md -------------------------------------------------------------------------------- /changelogs/v3.4.12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.12.md -------------------------------------------------------------------------------- /changelogs/v3.4.13.md: -------------------------------------------------------------------------------- 1 | # What's Changed 2 | 3 | - 修复 astrbot_updator 属性缺失与stt_enabled 未初始化 #252 4 | - 支持消息分段回复 -------------------------------------------------------------------------------- /changelogs/v3.4.14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.14.md -------------------------------------------------------------------------------- /changelogs/v3.4.15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.15.md -------------------------------------------------------------------------------- /changelogs/v3.4.16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.16.md -------------------------------------------------------------------------------- /changelogs/v3.4.17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.17.md -------------------------------------------------------------------------------- /changelogs/v3.4.18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.18.md -------------------------------------------------------------------------------- /changelogs/v3.4.19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.19.md -------------------------------------------------------------------------------- /changelogs/v3.4.20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.20.md -------------------------------------------------------------------------------- /changelogs/v3.4.21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.21.md -------------------------------------------------------------------------------- /changelogs/v3.4.22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.22.md -------------------------------------------------------------------------------- /changelogs/v3.4.23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.23.md -------------------------------------------------------------------------------- /changelogs/v3.4.24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.24.md -------------------------------------------------------------------------------- /changelogs/v3.4.25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.25.md -------------------------------------------------------------------------------- /changelogs/v3.4.26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.26.md -------------------------------------------------------------------------------- /changelogs/v3.4.27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.27.md -------------------------------------------------------------------------------- /changelogs/v3.4.28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.28.md -------------------------------------------------------------------------------- /changelogs/v3.4.29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.29.md -------------------------------------------------------------------------------- /changelogs/v3.4.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.3.md -------------------------------------------------------------------------------- /changelogs/v3.4.30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.30.md -------------------------------------------------------------------------------- /changelogs/v3.4.31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.31.md -------------------------------------------------------------------------------- /changelogs/v3.4.32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.32.md -------------------------------------------------------------------------------- /changelogs/v3.4.33.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.33.md -------------------------------------------------------------------------------- /changelogs/v3.4.35.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.35.md -------------------------------------------------------------------------------- /changelogs/v3.4.36.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.36.md -------------------------------------------------------------------------------- /changelogs/v3.4.37.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.37.md -------------------------------------------------------------------------------- /changelogs/v3.4.38.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.38.md -------------------------------------------------------------------------------- /changelogs/v3.4.39.md: -------------------------------------------------------------------------------- 1 | # What's Changed 2 | 3 | 1. 默认账户密码登录成功后弹出修改警告 4 | 2. 将 WebUI 默认 host 改变回 v3.4.38 之前的版本以减少兼容性问题。 -------------------------------------------------------------------------------- /changelogs/v3.4.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.4.md -------------------------------------------------------------------------------- /changelogs/v3.4.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.5.md -------------------------------------------------------------------------------- /changelogs/v3.4.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.6.md -------------------------------------------------------------------------------- /changelogs/v3.4.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.7.md -------------------------------------------------------------------------------- /changelogs/v3.4.8.md: -------------------------------------------------------------------------------- 1 | # What's Changed 2 | 3 | - 支持 Gewechat 接入微信个人号(文字交互) 4 | - 支持回复时 At 和引用发送者 #241 5 | - 清除残留的 personalities -------------------------------------------------------------------------------- /changelogs/v3.4.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.4.9.md -------------------------------------------------------------------------------- /changelogs/v3.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.0.md -------------------------------------------------------------------------------- /changelogs/v3.5.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.1.md -------------------------------------------------------------------------------- /changelogs/v3.5.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.10.md -------------------------------------------------------------------------------- /changelogs/v3.5.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.11.md -------------------------------------------------------------------------------- /changelogs/v3.5.12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.12.md -------------------------------------------------------------------------------- /changelogs/v3.5.13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.13.md -------------------------------------------------------------------------------- /changelogs/v3.5.14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.14.md -------------------------------------------------------------------------------- /changelogs/v3.5.15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.15.md -------------------------------------------------------------------------------- /changelogs/v3.5.16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.16.md -------------------------------------------------------------------------------- /changelogs/v3.5.17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.17.md -------------------------------------------------------------------------------- /changelogs/v3.5.18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.18.md -------------------------------------------------------------------------------- /changelogs/v3.5.19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.19.md -------------------------------------------------------------------------------- /changelogs/v3.5.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.2.md -------------------------------------------------------------------------------- /changelogs/v3.5.20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.20.md -------------------------------------------------------------------------------- /changelogs/v3.5.21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.21.md -------------------------------------------------------------------------------- /changelogs/v3.5.22.md: -------------------------------------------------------------------------------- 1 | # What's Changed 2 | 3 | 1. 修复: 用户环境没有 Docker 时,可能导致死锁(表现为在初始化 AstrBot 的时候卡住) 4 | -------------------------------------------------------------------------------- /changelogs/v3.5.23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.23.md -------------------------------------------------------------------------------- /changelogs/v3.5.24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.24.md -------------------------------------------------------------------------------- /changelogs/v3.5.25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.25.md -------------------------------------------------------------------------------- /changelogs/v3.5.26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.26.md -------------------------------------------------------------------------------- /changelogs/v3.5.27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.27.md -------------------------------------------------------------------------------- /changelogs/v3.5.3.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.3.1.md -------------------------------------------------------------------------------- /changelogs/v3.5.3.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.3.2.md -------------------------------------------------------------------------------- /changelogs/v3.5.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.3.md -------------------------------------------------------------------------------- /changelogs/v3.5.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.4.md -------------------------------------------------------------------------------- /changelogs/v3.5.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.5.md -------------------------------------------------------------------------------- /changelogs/v3.5.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.6.md -------------------------------------------------------------------------------- /changelogs/v3.5.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.7.md -------------------------------------------------------------------------------- /changelogs/v3.5.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.8.md -------------------------------------------------------------------------------- /changelogs/v3.5.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v3.5.9.md -------------------------------------------------------------------------------- /changelogs/v4.0.0-beta.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.0.0-beta.3.md -------------------------------------------------------------------------------- /changelogs/v4.0.0-beta.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.0.0-beta.4.md -------------------------------------------------------------------------------- /changelogs/v4.0.0-beta.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.0.0-beta.5.md -------------------------------------------------------------------------------- /changelogs/v4.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.0.0.md -------------------------------------------------------------------------------- /changelogs/v4.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.1.0.md -------------------------------------------------------------------------------- /changelogs/v4.1.1.md: -------------------------------------------------------------------------------- 1 | # What's Changed 2 | 3 | 修复了 v4.1.0 `model referenced before assignment` 的错误。 4 | 5 | > 如果已经使用自定义文转图模板,此次升级之后将会被覆盖,请提前备份。路径在 `astrbot/core/utils/t2i/template` 目录下。 6 | -------------------------------------------------------------------------------- /changelogs/v4.1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.1.2.md -------------------------------------------------------------------------------- /changelogs/v4.1.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.1.3.md -------------------------------------------------------------------------------- /changelogs/v4.1.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.1.4.md -------------------------------------------------------------------------------- /changelogs/v4.1.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.1.5.md -------------------------------------------------------------------------------- /changelogs/v4.1.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.1.6.md -------------------------------------------------------------------------------- /changelogs/v4.1.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.1.7.md -------------------------------------------------------------------------------- /changelogs/v4.2.0.md: -------------------------------------------------------------------------------- 1 | # What's Changed -------------------------------------------------------------------------------- /changelogs/v4.2.1.md: -------------------------------------------------------------------------------- 1 | # What's Changed -------------------------------------------------------------------------------- /changelogs/v4.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.3.0.md -------------------------------------------------------------------------------- /changelogs/v4.3.1.md: -------------------------------------------------------------------------------- 1 | # What's Changed 2 | -------------------------------------------------------------------------------- /changelogs/v4.3.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.3.2.md -------------------------------------------------------------------------------- /changelogs/v4.3.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.3.3.md -------------------------------------------------------------------------------- /changelogs/v4.3.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.3.5.md -------------------------------------------------------------------------------- /changelogs/v4.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.5.0.md -------------------------------------------------------------------------------- /changelogs/v4.5.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.5.1.md -------------------------------------------------------------------------------- /changelogs/v4.5.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.5.2.md -------------------------------------------------------------------------------- /changelogs/v4.5.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.5.3.md -------------------------------------------------------------------------------- /changelogs/v4.5.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.5.4.md -------------------------------------------------------------------------------- /changelogs/v4.5.5.md: -------------------------------------------------------------------------------- 1 | ## What's Changed 2 | 3 | 1. 修复:部署失败 4 | -------------------------------------------------------------------------------- /changelogs/v4.5.6.md: -------------------------------------------------------------------------------- 1 | ## What's Changed 2 | 3 | 1. 修复:构建失败 4 | -------------------------------------------------------------------------------- /changelogs/v4.5.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.5.7.md -------------------------------------------------------------------------------- /changelogs/v4.5.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.5.8.md -------------------------------------------------------------------------------- /changelogs/v4.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.6.0.md -------------------------------------------------------------------------------- /changelogs/v4.6.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.6.1.md -------------------------------------------------------------------------------- /changelogs/v4.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.7.0.md -------------------------------------------------------------------------------- /changelogs/v4.7.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.7.1.md -------------------------------------------------------------------------------- /changelogs/v4.7.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.7.3.md -------------------------------------------------------------------------------- /changelogs/v4.7.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/changelogs/v4.7.4.md -------------------------------------------------------------------------------- /compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/compose.yml -------------------------------------------------------------------------------- /dashboard/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | dist/ -------------------------------------------------------------------------------- /dashboard/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/LICENSE -------------------------------------------------------------------------------- /dashboard/README.md: -------------------------------------------------------------------------------- 1 | # AstrBot 管理面板 2 | 3 | 基于 CodedThemes/Berry 模板开发。 -------------------------------------------------------------------------------- /dashboard/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /dashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/index.html -------------------------------------------------------------------------------- /dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/package.json -------------------------------------------------------------------------------- /dashboard/public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/public/_redirects -------------------------------------------------------------------------------- /dashboard/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/public/favicon.svg -------------------------------------------------------------------------------- /dashboard/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/App.vue -------------------------------------------------------------------------------- /dashboard/src/assets/images/astrbot_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/assets/images/astrbot_banner.png -------------------------------------------------------------------------------- /dashboard/src/assets/images/astrbot_logo_mini.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/assets/images/astrbot_logo_mini.webp -------------------------------------------------------------------------------- /dashboard/src/assets/images/icon-no-shadow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/assets/images/icon-no-shadow.svg -------------------------------------------------------------------------------- /dashboard/src/assets/images/platform_logos/dingtalk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/assets/images/platform_logos/dingtalk.svg -------------------------------------------------------------------------------- /dashboard/src/assets/images/platform_logos/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/assets/images/platform_logos/discord.svg -------------------------------------------------------------------------------- /dashboard/src/assets/images/platform_logos/kook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/assets/images/platform_logos/kook.png -------------------------------------------------------------------------------- /dashboard/src/assets/images/platform_logos/lark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/assets/images/platform_logos/lark.png -------------------------------------------------------------------------------- /dashboard/src/assets/images/platform_logos/misskey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/assets/images/platform_logos/misskey.png -------------------------------------------------------------------------------- /dashboard/src/assets/images/platform_logos/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/assets/images/platform_logos/qq.png -------------------------------------------------------------------------------- /dashboard/src/assets/images/platform_logos/satori.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/assets/images/platform_logos/satori.png -------------------------------------------------------------------------------- /dashboard/src/assets/images/platform_logos/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/assets/images/platform_logos/slack.svg -------------------------------------------------------------------------------- /dashboard/src/assets/images/platform_logos/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/assets/images/platform_logos/telegram.svg -------------------------------------------------------------------------------- /dashboard/src/assets/images/platform_logos/vocechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/assets/images/platform_logos/vocechat.png -------------------------------------------------------------------------------- /dashboard/src/assets/images/platform_logos/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/assets/images/platform_logos/wechat.png -------------------------------------------------------------------------------- /dashboard/src/assets/images/platform_logos/wecom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/assets/images/platform_logos/wecom.png -------------------------------------------------------------------------------- /dashboard/src/assets/images/plugin_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/assets/images/plugin_icon.png -------------------------------------------------------------------------------- /dashboard/src/components/ConfirmDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/ConfirmDialog.vue -------------------------------------------------------------------------------- /dashboard/src/components/chat/Chat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/chat/Chat.vue -------------------------------------------------------------------------------- /dashboard/src/components/chat/ChatInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/chat/ChatInput.vue -------------------------------------------------------------------------------- /dashboard/src/components/chat/ConfigSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/chat/ConfigSelector.vue -------------------------------------------------------------------------------- /dashboard/src/components/chat/ConversationSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/chat/ConversationSidebar.vue -------------------------------------------------------------------------------- /dashboard/src/components/chat/MessageList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/chat/MessageList.vue -------------------------------------------------------------------------------- /dashboard/src/components/chat/ProviderModelSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/chat/ProviderModelSelector.vue -------------------------------------------------------------------------------- /dashboard/src/components/chat/StandaloneChat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/chat/StandaloneChat.vue -------------------------------------------------------------------------------- /dashboard/src/components/config/AstrBotCoreConfigWrapper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/config/AstrBotCoreConfigWrapper.vue -------------------------------------------------------------------------------- /dashboard/src/components/platform/AddNewPlatform.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/platform/AddNewPlatform.vue -------------------------------------------------------------------------------- /dashboard/src/components/provider/AddNewProvider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/provider/AddNewProvider.vue -------------------------------------------------------------------------------- /dashboard/src/components/shared/AstrBotConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/shared/AstrBotConfig.vue -------------------------------------------------------------------------------- /dashboard/src/components/shared/AstrBotConfigV4.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/shared/AstrBotConfigV4.vue -------------------------------------------------------------------------------- /dashboard/src/components/shared/ConsoleDisplayer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/shared/ConsoleDisplayer.vue -------------------------------------------------------------------------------- /dashboard/src/components/shared/ExtensionCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/shared/ExtensionCard.vue -------------------------------------------------------------------------------- /dashboard/src/components/shared/ItemCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/shared/ItemCard.vue -------------------------------------------------------------------------------- /dashboard/src/components/shared/ItemCardGrid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/shared/ItemCardGrid.vue -------------------------------------------------------------------------------- /dashboard/src/components/shared/KnowledgeBaseSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/shared/KnowledgeBaseSelector.vue -------------------------------------------------------------------------------- /dashboard/src/components/shared/LanguageSwitcher.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/shared/LanguageSwitcher.vue -------------------------------------------------------------------------------- /dashboard/src/components/shared/ListConfigItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/shared/ListConfigItem.vue -------------------------------------------------------------------------------- /dashboard/src/components/shared/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/shared/Logo.vue -------------------------------------------------------------------------------- /dashboard/src/components/shared/MigrationDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/shared/MigrationDialog.vue -------------------------------------------------------------------------------- /dashboard/src/components/shared/ObjectEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/shared/ObjectEditor.vue -------------------------------------------------------------------------------- /dashboard/src/components/shared/PersonaForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/shared/PersonaForm.vue -------------------------------------------------------------------------------- /dashboard/src/components/shared/PersonaSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/shared/PersonaSelector.vue -------------------------------------------------------------------------------- /dashboard/src/components/shared/PluginSetSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/shared/PluginSetSelector.vue -------------------------------------------------------------------------------- /dashboard/src/components/shared/ProviderSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/shared/ProviderSelector.vue -------------------------------------------------------------------------------- /dashboard/src/components/shared/ProxySelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/shared/ProxySelector.vue -------------------------------------------------------------------------------- /dashboard/src/components/shared/ReadmeDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/shared/ReadmeDialog.vue -------------------------------------------------------------------------------- /dashboard/src/components/shared/SidebarCustomizer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/shared/SidebarCustomizer.vue -------------------------------------------------------------------------------- /dashboard/src/components/shared/T2ITemplateEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/shared/T2ITemplateEditor.vue -------------------------------------------------------------------------------- /dashboard/src/components/shared/UninstallConfirmDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/shared/UninstallConfirmDialog.vue -------------------------------------------------------------------------------- /dashboard/src/components/shared/WaitingForRestart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/components/shared/WaitingForRestart.vue -------------------------------------------------------------------------------- /dashboard/src/composables/useConversations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/composables/useConversations.ts -------------------------------------------------------------------------------- /dashboard/src/composables/useMediaHandling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/composables/useMediaHandling.ts -------------------------------------------------------------------------------- /dashboard/src/composables/useMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/composables/useMessages.ts -------------------------------------------------------------------------------- /dashboard/src/composables/useRecording.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/composables/useRecording.ts -------------------------------------------------------------------------------- /dashboard/src/composables/useSessions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/composables/useSessions.ts -------------------------------------------------------------------------------- /dashboard/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/config.ts -------------------------------------------------------------------------------- /dashboard/src/i18n/composables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/composables.ts -------------------------------------------------------------------------------- /dashboard/src/i18n/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/loader.ts -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/core/actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/core/actions.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/core/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/core/common.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/core/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/core/header.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/core/navigation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/core/navigation.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/core/shared.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/core/shared.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/core/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/core/status.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/features/about.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/features/about.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/features/alkaid/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/features/alkaid/index.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/features/alkaid/knowledge-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/features/alkaid/knowledge-base.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/features/alkaid/memory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/features/alkaid/memory.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/features/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/features/auth.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/features/chart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/features/chart.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/features/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/features/chat.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/features/config-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/features/config-metadata.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/features/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/features/config.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/features/console.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/features/console.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/features/conversation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/features/conversation.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/features/dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/features/dashboard.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/features/extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/features/extension.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/features/knowledge-base/detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/features/knowledge-base/detail.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/features/knowledge-base/document.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/features/knowledge-base/document.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/features/knowledge-base/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/features/knowledge-base/index.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/features/migration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/features/migration.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/features/persona.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/features/persona.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/features/platform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/features/platform.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/features/provider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/features/provider.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/features/session-management.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/features/session-management.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/features/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/features/settings.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/features/tool-use.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/features/tool-use.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/messages/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/messages/errors.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/messages/success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/messages/success.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/en-US/messages/validation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/en-US/messages/validation.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/core/actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/core/actions.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/core/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/core/common.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/core/header.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/core/header.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/core/navigation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/core/navigation.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/core/shared.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/core/shared.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/core/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/core/status.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/features/about.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/features/about.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/features/alkaid/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/features/alkaid/index.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/features/alkaid/knowledge-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/features/alkaid/knowledge-base.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/features/alkaid/memory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/features/alkaid/memory.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/features/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/features/auth.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/features/chart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/features/chart.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/features/chat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/features/chat.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/features/config-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/features/config-metadata.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/features/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/features/config.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/features/console.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/features/console.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/features/conversation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/features/conversation.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/features/dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/features/dashboard.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/features/extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/features/extension.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/features/knowledge-base/detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/detail.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/features/knowledge-base/document.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/document.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/features/knowledge-base/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/features/knowledge-base/index.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/features/migration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/features/migration.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/features/persona.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/features/persona.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/features/platform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/features/platform.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/features/provider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/features/provider.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/features/session-management.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/features/session-management.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/features/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/features/settings.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/features/tool-use.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/features/tool-use.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/messages/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/messages/errors.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/messages/success.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/messages/success.json -------------------------------------------------------------------------------- /dashboard/src/i18n/locales/zh-CN/messages/validation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/locales/zh-CN/messages/validation.json -------------------------------------------------------------------------------- /dashboard/src/i18n/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/tools/index.ts -------------------------------------------------------------------------------- /dashboard/src/i18n/translations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/translations.ts -------------------------------------------------------------------------------- /dashboard/src/i18n/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/types.ts -------------------------------------------------------------------------------- /dashboard/src/i18n/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/i18n/validator.ts -------------------------------------------------------------------------------- /dashboard/src/layouts/blank/BlankLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/layouts/blank/BlankLayout.vue -------------------------------------------------------------------------------- /dashboard/src/layouts/full/FullLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/layouts/full/FullLayout.vue -------------------------------------------------------------------------------- /dashboard/src/layouts/full/vertical-header/VerticalHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/layouts/full/vertical-header/VerticalHeader.vue -------------------------------------------------------------------------------- /dashboard/src/layouts/full/vertical-sidebar/NavItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/layouts/full/vertical-sidebar/NavItem.vue -------------------------------------------------------------------------------- /dashboard/src/layouts/full/vertical-sidebar/VerticalSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/layouts/full/vertical-sidebar/VerticalSidebar.vue -------------------------------------------------------------------------------- /dashboard/src/layouts/full/vertical-sidebar/sidebarItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/layouts/full/vertical-sidebar/sidebarItem.ts -------------------------------------------------------------------------------- /dashboard/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/main.ts -------------------------------------------------------------------------------- /dashboard/src/plugins/confirmPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/plugins/confirmPlugin.ts -------------------------------------------------------------------------------- /dashboard/src/plugins/vuetify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/plugins/vuetify.ts -------------------------------------------------------------------------------- /dashboard/src/router/AuthRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/router/AuthRoutes.ts -------------------------------------------------------------------------------- /dashboard/src/router/ChatBoxRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/router/ChatBoxRoutes.ts -------------------------------------------------------------------------------- /dashboard/src/router/MainRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/router/MainRoutes.ts -------------------------------------------------------------------------------- /dashboard/src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/router/index.ts -------------------------------------------------------------------------------- /dashboard/src/scss/_override.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/scss/_override.scss -------------------------------------------------------------------------------- /dashboard/src/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/scss/_variables.scss -------------------------------------------------------------------------------- /dashboard/src/scss/components/_VButtons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/scss/components/_VButtons.scss -------------------------------------------------------------------------------- /dashboard/src/scss/components/_VCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/scss/components/_VCard.scss -------------------------------------------------------------------------------- /dashboard/src/scss/components/_VField.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/scss/components/_VField.scss -------------------------------------------------------------------------------- /dashboard/src/scss/components/_VInput.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/scss/components/_VInput.scss -------------------------------------------------------------------------------- /dashboard/src/scss/components/_VNavigationDrawer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/scss/components/_VNavigationDrawer.scss -------------------------------------------------------------------------------- /dashboard/src/scss/components/_VScrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/scss/components/_VScrollbar.scss -------------------------------------------------------------------------------- /dashboard/src/scss/components/_VShadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/scss/components/_VShadow.scss -------------------------------------------------------------------------------- /dashboard/src/scss/components/_VTabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/scss/components/_VTabs.scss -------------------------------------------------------------------------------- /dashboard/src/scss/components/_VTextField.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/scss/components/_VTextField.scss -------------------------------------------------------------------------------- /dashboard/src/scss/layout/_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/scss/layout/_container.scss -------------------------------------------------------------------------------- /dashboard/src/scss/layout/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/scss/layout/_sidebar.scss -------------------------------------------------------------------------------- /dashboard/src/scss/pages/_dashboards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/scss/pages/_dashboards.scss -------------------------------------------------------------------------------- /dashboard/src/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/scss/style.scss -------------------------------------------------------------------------------- /dashboard/src/stores/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/stores/auth.ts -------------------------------------------------------------------------------- /dashboard/src/stores/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/stores/common.js -------------------------------------------------------------------------------- /dashboard/src/stores/customizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/stores/customizer.ts -------------------------------------------------------------------------------- /dashboard/src/stores/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/stores/toast.js -------------------------------------------------------------------------------- /dashboard/src/theme/DarkTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/theme/DarkTheme.ts -------------------------------------------------------------------------------- /dashboard/src/theme/LightTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/theme/LightTheme.ts -------------------------------------------------------------------------------- /dashboard/src/types/themeTypes/ThemeType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/types/themeTypes/ThemeType.ts -------------------------------------------------------------------------------- /dashboard/src/types/vue3-print-nb.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'vue3-print-nb'; 2 | -------------------------------------------------------------------------------- /dashboard/src/types/vue_tabler_icon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/types/vue_tabler_icon.d.ts -------------------------------------------------------------------------------- /dashboard/src/utils/platformUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/utils/platformUtils.js -------------------------------------------------------------------------------- /dashboard/src/utils/providerUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/utils/providerUtils.js -------------------------------------------------------------------------------- /dashboard/src/utils/sidebarCustomization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/utils/sidebarCustomization.js -------------------------------------------------------------------------------- /dashboard/src/utils/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/utils/toast.js -------------------------------------------------------------------------------- /dashboard/src/views/AboutPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/AboutPage.vue -------------------------------------------------------------------------------- /dashboard/src/views/AlkaidPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/AlkaidPage.vue -------------------------------------------------------------------------------- /dashboard/src/views/ChatBoxPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/ChatBoxPage.vue -------------------------------------------------------------------------------- /dashboard/src/views/ChatPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/ChatPage.vue -------------------------------------------------------------------------------- /dashboard/src/views/ConfigPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/ConfigPage.vue -------------------------------------------------------------------------------- /dashboard/src/views/ConsolePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/ConsolePage.vue -------------------------------------------------------------------------------- /dashboard/src/views/ConversationPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/ConversationPage.vue -------------------------------------------------------------------------------- /dashboard/src/views/ExtensionPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/ExtensionPage.vue -------------------------------------------------------------------------------- /dashboard/src/views/PersonaPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/PersonaPage.vue -------------------------------------------------------------------------------- /dashboard/src/views/PlatformPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/PlatformPage.vue -------------------------------------------------------------------------------- /dashboard/src/views/ProviderPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/ProviderPage.vue -------------------------------------------------------------------------------- /dashboard/src/views/SessionManagementPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/SessionManagementPage.vue -------------------------------------------------------------------------------- /dashboard/src/views/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/Settings.vue -------------------------------------------------------------------------------- /dashboard/src/views/ToolUsePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/ToolUsePage.vue -------------------------------------------------------------------------------- /dashboard/src/views/alkaid/KnowledgeBase.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/alkaid/KnowledgeBase.vue -------------------------------------------------------------------------------- /dashboard/src/views/alkaid/LongTermMemory.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/alkaid/LongTermMemory.vue -------------------------------------------------------------------------------- /dashboard/src/views/alkaid/Other.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/alkaid/Other.vue -------------------------------------------------------------------------------- /dashboard/src/views/authentication/auth/LoginPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/authentication/auth/LoginPage.vue -------------------------------------------------------------------------------- /dashboard/src/views/authentication/authForms/AuthLogin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/authentication/authForms/AuthLogin.vue -------------------------------------------------------------------------------- /dashboard/src/views/dashboards/default/DefaultDashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/dashboards/default/DefaultDashboard.vue -------------------------------------------------------------------------------- /dashboard/src/views/dashboards/default/components/MemoryUsage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/dashboards/default/components/MemoryUsage.vue -------------------------------------------------------------------------------- /dashboard/src/views/dashboards/default/components/MessageStat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/dashboards/default/components/MessageStat.vue -------------------------------------------------------------------------------- /dashboard/src/views/dashboards/default/components/OnlinePlatform.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/dashboards/default/components/OnlinePlatform.vue -------------------------------------------------------------------------------- /dashboard/src/views/dashboards/default/components/OnlineTime.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/dashboards/default/components/OnlineTime.vue -------------------------------------------------------------------------------- /dashboard/src/views/dashboards/default/components/PlatformStat.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/dashboards/default/components/PlatformStat.vue -------------------------------------------------------------------------------- /dashboard/src/views/dashboards/default/components/RunningTime.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/dashboards/default/components/RunningTime.vue -------------------------------------------------------------------------------- /dashboard/src/views/dashboards/default/components/TotalMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/dashboards/default/components/TotalMessage.vue -------------------------------------------------------------------------------- /dashboard/src/views/knowledge-base/DocumentDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/knowledge-base/DocumentDetail.vue -------------------------------------------------------------------------------- /dashboard/src/views/knowledge-base/KBDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/knowledge-base/KBDetail.vue -------------------------------------------------------------------------------- /dashboard/src/views/knowledge-base/KBList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/knowledge-base/KBList.vue -------------------------------------------------------------------------------- /dashboard/src/views/knowledge-base/components/DocumentsTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/knowledge-base/components/DocumentsTab.vue -------------------------------------------------------------------------------- /dashboard/src/views/knowledge-base/components/RetrievalTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/knowledge-base/components/RetrievalTab.vue -------------------------------------------------------------------------------- /dashboard/src/views/knowledge-base/components/SettingsTab.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/knowledge-base/components/SettingsTab.vue -------------------------------------------------------------------------------- /dashboard/src/views/knowledge-base/components/TavilyKeyDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/knowledge-base/components/TavilyKeyDialog.vue -------------------------------------------------------------------------------- /dashboard/src/views/knowledge-base/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/src/views/knowledge-base/index.vue -------------------------------------------------------------------------------- /dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/tsconfig.json -------------------------------------------------------------------------------- /dashboard/tsconfig.vite-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/tsconfig.vite-config.json -------------------------------------------------------------------------------- /dashboard/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/dashboard/vite.config.ts -------------------------------------------------------------------------------- /k8s/astrbot/00-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/k8s/astrbot/00-namespace.yaml -------------------------------------------------------------------------------- /k8s/astrbot/01-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/k8s/astrbot/01-pvc.yaml -------------------------------------------------------------------------------- /k8s/astrbot/02-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/k8s/astrbot/02-deployment.yaml -------------------------------------------------------------------------------- /k8s/astrbot/03-service-nodeport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/k8s/astrbot/03-service-nodeport.yaml -------------------------------------------------------------------------------- /k8s/astrbot/04-service-loadbalancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/k8s/astrbot/04-service-loadbalancer.yaml -------------------------------------------------------------------------------- /k8s/astrbot_with_napcat/00-namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: astrbot-ns -------------------------------------------------------------------------------- /k8s/astrbot_with_napcat/01-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/k8s/astrbot_with_napcat/01-pvc.yaml -------------------------------------------------------------------------------- /k8s/astrbot_with_napcat/02-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/k8s/astrbot_with_napcat/02-deployment.yaml -------------------------------------------------------------------------------- /k8s/astrbot_with_napcat/03-service-nodeport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/k8s/astrbot_with_napcat/03-service-nodeport.yaml -------------------------------------------------------------------------------- /k8s/astrbot_with_napcat/04-service-loadbalancer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/k8s/astrbot_with_napcat/04-service-loadbalancer.yaml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/main.py -------------------------------------------------------------------------------- /packages/astrbot/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/astrbot/commands/__init__.py -------------------------------------------------------------------------------- /packages/astrbot/commands/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/astrbot/commands/admin.py -------------------------------------------------------------------------------- /packages/astrbot/commands/alter_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/astrbot/commands/alter_cmd.py -------------------------------------------------------------------------------- /packages/astrbot/commands/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/astrbot/commands/conversation.py -------------------------------------------------------------------------------- /packages/astrbot/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/astrbot/commands/help.py -------------------------------------------------------------------------------- /packages/astrbot/commands/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/astrbot/commands/llm.py -------------------------------------------------------------------------------- /packages/astrbot/commands/persona.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/astrbot/commands/persona.py -------------------------------------------------------------------------------- /packages/astrbot/commands/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/astrbot/commands/plugin.py -------------------------------------------------------------------------------- /packages/astrbot/commands/provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/astrbot/commands/provider.py -------------------------------------------------------------------------------- /packages/astrbot/commands/setunset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/astrbot/commands/setunset.py -------------------------------------------------------------------------------- /packages/astrbot/commands/sid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/astrbot/commands/sid.py -------------------------------------------------------------------------------- /packages/astrbot/commands/t2i.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/astrbot/commands/t2i.py -------------------------------------------------------------------------------- /packages/astrbot/commands/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/astrbot/commands/tool.py -------------------------------------------------------------------------------- /packages/astrbot/commands/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/astrbot/commands/tts.py -------------------------------------------------------------------------------- /packages/astrbot/commands/utils/rst_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/astrbot/commands/utils/rst_scene.py -------------------------------------------------------------------------------- /packages/astrbot/long_term_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/astrbot/long_term_memory.py -------------------------------------------------------------------------------- /packages/astrbot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/astrbot/main.py -------------------------------------------------------------------------------- /packages/astrbot/metadata.yaml: -------------------------------------------------------------------------------- 1 | name: astrbot 2 | desc: AstrBot 基础指令结合 + 拓展功能 3 | author: Soulter 4 | version: 4.0.0 -------------------------------------------------------------------------------- /packages/astrbot/process_llm_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/astrbot/process_llm_request.py -------------------------------------------------------------------------------- /packages/python_interpreter/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/python_interpreter/main.py -------------------------------------------------------------------------------- /packages/python_interpreter/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/python_interpreter/metadata.yaml -------------------------------------------------------------------------------- /packages/python_interpreter/requirements.txt: -------------------------------------------------------------------------------- 1 | aiodocker -------------------------------------------------------------------------------- /packages/python_interpreter/shared/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/python_interpreter/shared/api.py -------------------------------------------------------------------------------- /packages/reminder/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/reminder/main.py -------------------------------------------------------------------------------- /packages/reminder/metadata.yaml: -------------------------------------------------------------------------------- 1 | name: astrbot-reminder 2 | desc: 使用 LLM 待办提醒 3 | author: Soulter 4 | version: 0.0.1 -------------------------------------------------------------------------------- /packages/session_controller/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/session_controller/main.py -------------------------------------------------------------------------------- /packages/session_controller/metadata.yaml: -------------------------------------------------------------------------------- 1 | name: session_controller 2 | desc: 为插件支持会话控制 3 | author: Cvandia & Soulter 4 | version: v1.0.1 5 | repo: https://astrbot.app -------------------------------------------------------------------------------- /packages/web_searcher/engines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/web_searcher/engines/__init__.py -------------------------------------------------------------------------------- /packages/web_searcher/engines/bing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/web_searcher/engines/bing.py -------------------------------------------------------------------------------- /packages/web_searcher/engines/sogo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/web_searcher/engines/sogo.py -------------------------------------------------------------------------------- /packages/web_searcher/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/packages/web_searcher/main.py -------------------------------------------------------------------------------- /packages/web_searcher/metadata.yaml: -------------------------------------------------------------------------------- 1 | name: astrbot-web-searcher 2 | desc: 让 LLM 具有网页检索能力 3 | author: Soulter 4 | version: 1.14.514 -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /samples/stt_health_check.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/samples/stt_health_check.wav -------------------------------------------------------------------------------- /tests/test_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/tests/test_dashboard.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/test_plugin_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/tests/test_plugin_manager.py -------------------------------------------------------------------------------- /tests/test_security_fixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstrBotDevs/AstrBot/HEAD/tests/test_security_fixes.py --------------------------------------------------------------------------------