AstrBot 4.8.0__py3-none-any.whl → 4.9.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- astrbot/cli/__init__.py +1 -1
- astrbot/core/agent/runners/tool_loop_agent_runner.py +0 -1
- astrbot/core/agent/tool.py +7 -2
- astrbot/core/astr_agent_tool_exec.py +5 -1
- astrbot/core/config/astrbot_config.py +4 -0
- astrbot/core/config/default.py +59 -1
- astrbot/core/core_lifecycle.py +1 -1
- astrbot/core/db/__init__.py +2 -3
- astrbot/core/db/migration/migra_3_to_4.py +2 -0
- astrbot/core/db/migration/sqlite_v3.py +6 -4
- astrbot/core/db/po.py +16 -15
- astrbot/core/db/sqlite.py +4 -3
- astrbot/core/db/vec_db/faiss_impl/embedding_storage.py +2 -0
- astrbot/core/event_bus.py +6 -1
- astrbot/core/knowledge_base/retrieval/manager.py +5 -1
- astrbot/core/log.py +2 -1
- astrbot/core/message/components.py +9 -3
- astrbot/core/persona_mgr.py +2 -2
- astrbot/core/pipeline/content_safety_check/stage.py +1 -1
- astrbot/core/pipeline/context_utils.py +2 -1
- astrbot/core/pipeline/process_stage/method/star_request.py +1 -2
- astrbot/core/pipeline/process_stage/stage.py +1 -1
- astrbot/core/pipeline/respond/stage.py +4 -2
- astrbot/core/pipeline/result_decorate/stage.py +68 -21
- astrbot/core/pipeline/scheduler.py +5 -1
- astrbot/core/pipeline/waking_check/stage.py +10 -0
- astrbot/core/platform/astr_message_event.py +5 -3
- astrbot/core/platform/astrbot_message.py +2 -2
- astrbot/core/platform/manager.py +4 -0
- astrbot/core/platform/platform.py +11 -3
- astrbot/core/platform/platform_metadata.py +1 -1
- astrbot/core/platform/register.py +1 -0
- astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py +8 -6
- astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py +9 -5
- astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py +24 -16
- astrbot/core/platform/sources/dingtalk/dingtalk_event.py +5 -2
- astrbot/core/platform/sources/discord/client.py +16 -4
- astrbot/core/platform/sources/discord/components.py +2 -2
- astrbot/core/platform/sources/discord/discord_platform_adapter.py +52 -24
- astrbot/core/platform/sources/discord/discord_platform_event.py +29 -8
- astrbot/core/platform/sources/lark/lark_adapter.py +177 -19
- astrbot/core/platform/sources/lark/lark_event.py +39 -4
- astrbot/core/platform/sources/lark/server.py +206 -0
- astrbot/core/platform/sources/misskey/misskey_adapter.py +2 -3
- astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py +62 -18
- astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py +13 -7
- astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py +5 -3
- astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py +2 -1
- astrbot/core/platform/sources/slack/client.py +9 -2
- astrbot/core/platform/sources/slack/slack_adapter.py +15 -9
- astrbot/core/platform/sources/slack/slack_event.py +8 -7
- astrbot/core/platform/sources/telegram/tg_adapter.py +1 -1
- astrbot/core/platform/sources/telegram/tg_event.py +23 -27
- astrbot/core/platform/sources/webchat/webchat_adapter.py +2 -2
- astrbot/core/platform/sources/webchat/webchat_event.py +2 -2
- astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py +26 -9
- astrbot/core/platform/sources/wecom/wecom_adapter.py +25 -28
- astrbot/core/platform/sources/wecom/wecom_event.py +2 -2
- astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py +3 -3
- astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py +30 -25
- astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py +10 -7
- astrbot/core/provider/func_tool_manager.py +3 -3
- astrbot/core/provider/manager.py +130 -74
- astrbot/core/provider/provider.py +12 -1
- astrbot/core/provider/sources/azure_tts_source.py +31 -9
- astrbot/core/provider/sources/bailian_rerank_source.py +4 -0
- astrbot/core/provider/sources/dashscope_tts.py +3 -2
- astrbot/core/provider/sources/edge_tts_source.py +1 -1
- astrbot/core/provider/sources/fishaudio_tts_api_source.py +5 -4
- astrbot/core/provider/sources/gemini_embedding_source.py +15 -5
- astrbot/core/provider/sources/gemini_source.py +12 -10
- astrbot/core/provider/sources/minimax_tts_api_source.py +4 -2
- astrbot/core/provider/sources/openai_embedding_source.py +2 -2
- astrbot/core/provider/sources/openai_source.py +4 -0
- astrbot/core/provider/sources/sensevoice_selfhosted_source.py +5 -2
- astrbot/core/provider/sources/vllm_rerank_source.py +1 -0
- astrbot/core/provider/sources/whisper_api_source.py +1 -1
- astrbot/core/provider/sources/whisper_selfhosted_source.py +6 -2
- astrbot/core/provider/sources/xinference_rerank_source.py +10 -2
- astrbot/core/star/context.py +2 -2
- astrbot/core/star/register/star_handler.py +22 -5
- astrbot/core/star/star_handler.py +85 -4
- astrbot/core/updator.py +3 -3
- astrbot/core/utils/io.py +1 -1
- astrbot/core/utils/session_waiter.py +17 -10
- astrbot/core/utils/shared_preferences.py +32 -0
- astrbot/core/utils/t2i/__init__.py +2 -2
- astrbot/core/utils/t2i/local_strategy.py +25 -31
- astrbot/core/utils/tencent_record_helper.py +1 -1
- astrbot/core/utils/version_comparator.py +6 -3
- astrbot/core/utils/webhook_utils.py +19 -0
- astrbot/dashboard/routes/chat.py +14 -9
- astrbot/dashboard/routes/config.py +10 -20
- astrbot/dashboard/routes/knowledge_base.py +253 -78
- astrbot/dashboard/routes/log.py +13 -8
- astrbot/dashboard/routes/platform.py +1 -1
- astrbot/dashboard/routes/plugin.py +108 -51
- astrbot/dashboard/routes/route.py +2 -0
- astrbot/dashboard/server.py +6 -3
- {astrbot-4.8.0.dist-info → astrbot-4.9.0.dist-info}/METADATA +3 -1
- {astrbot-4.8.0.dist-info → astrbot-4.9.0.dist-info}/RECORD +104 -103
- {astrbot-4.8.0.dist-info → astrbot-4.9.0.dist-info}/WHEEL +0 -0
- {astrbot-4.8.0.dist-info → astrbot-4.9.0.dist-info}/entry_points.txt +0 -0
- {astrbot-4.8.0.dist-info → astrbot-4.9.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -8,7 +8,7 @@ astrbot/api/platform/__init__.py,sha256=HXvAy_KLtOJspoGVgDtLa7VjIZoF6WK3Puww55yy
|
|
|
8
8
|
astrbot/api/provider/__init__.py,sha256=mJVcon0snjn_xYirk2hntwba6ymIYYC-ZKKmxvx-jok,379
|
|
9
9
|
astrbot/api/star/__init__.py,sha256=OxgHGtWn3lEQGjb4twbpbWnRepUevPu7gxtDAkAsfhQ,250
|
|
10
10
|
astrbot/api/util/__init__.py,sha256=L1O_mFEUDk8V4lEPsT5iiNbIiOVh7HbrNmitqzUWMZg,180
|
|
11
|
-
astrbot/cli/__init__.py,sha256=
|
|
11
|
+
astrbot/cli/__init__.py,sha256=E0Y9rD8RWyBe6e34I0525HrRS_vGhPvve493oPOdtXw,22
|
|
12
12
|
astrbot/cli/__main__.py,sha256=QobgMyFoLNTgI_OYddhGOZ9ZvQeBVjjz79mA2cC2OEU,1758
|
|
13
13
|
astrbot/cli/commands/__init__.py,sha256=eAgppZQIqFO1ylQJFABeYrzQ0oZqPWjtE80aKIPB3ks,149
|
|
14
14
|
astrbot/cli/commands/cmd_conf.py,sha256=6-YLicBt_zjWTzaVLUJ1VQLQPbDEPYACB9IVnN8Zvng,6330
|
|
@@ -23,19 +23,19 @@ astrbot/core/__init__.py,sha256=zsaF9IeON4NaHk_Ktr0eB7xQEFC5tUZ4UJCesC3-KHM,1220
|
|
|
23
23
|
astrbot/core/astr_agent_context.py,sha256=bgSbB-JgK_ncK-H2cxj-Ox0Gt_D8X4QmrgbalL9Hgzs,618
|
|
24
24
|
astrbot/core/astr_agent_hooks.py,sha256=QOMtBaamDRiylGIby5D5ApThk94Y_Dcy4gDnhPBHXKo,1073
|
|
25
25
|
astrbot/core/astr_agent_run_util.py,sha256=56ZhPrC16E34dbQzxNl3yhbgrQaF2Az5sYllQ6o6aDc,3741
|
|
26
|
-
astrbot/core/astr_agent_tool_exec.py,sha256=
|
|
26
|
+
astrbot/core/astr_agent_tool_exec.py,sha256=KnUP1q0k_pOWT3krw8leH53G7QTnapDjMlXH-LnI-xA,9005
|
|
27
27
|
astrbot/core/astrbot_config_mgr.py,sha256=SUvusfo8Qk89eNpEmduWcXuczJ9g5TBH-VOV69ax28g,8950
|
|
28
28
|
astrbot/core/conversation_mgr.py,sha256=GsirCeMBmgxyaOb3hYNleF_11yyFyAER5PtpM3IUvIQ,15765
|
|
29
|
-
astrbot/core/core_lifecycle.py,sha256=
|
|
30
|
-
astrbot/core/event_bus.py,sha256=
|
|
29
|
+
astrbot/core/core_lifecycle.py,sha256=ostfEUzhxaU1tancA6D88blXZ5gFcYj2OQoxWG1AWmo,12680
|
|
30
|
+
astrbot/core/event_bus.py,sha256=5Lg5L0UcwcJeL9NuX7DiTSRR7fr2IoaSbR6ECDKD4K8,2729
|
|
31
31
|
astrbot/core/exceptions.py,sha256=GVCUgAjpvUHLL59MkJalFrSp_HbtliChu7XII_Px2WM,219
|
|
32
32
|
astrbot/core/file_token_service.py,sha256=8X0Qyo-NPGhtxy6IcRsJg7Z2tx_ULPf_7OKvw-KBk6o,3317
|
|
33
33
|
astrbot/core/initial_loader.py,sha256=q798G8wEti7-p3UC0y1GB3MOK-kO6z1Nt826iO5nJVA,1802
|
|
34
|
-
astrbot/core/log.py,sha256=
|
|
35
|
-
astrbot/core/persona_mgr.py,sha256=
|
|
34
|
+
astrbot/core/log.py,sha256=MQ249OPPudl-X8FQrs22IBR1lhPl4q8EdSvHy1K_EH8,8532
|
|
35
|
+
astrbot/core/persona_mgr.py,sha256=g6Xzhrvlvk9YRrcPNEpevHiCa6GVfut9NoKX7PRNmXM,7434
|
|
36
36
|
astrbot/core/platform_message_history_mgr.py,sha256=0frxrq6Bt18OXbt24uRnQl039wpi2gK5L9ONLtBuMsM,1580
|
|
37
37
|
astrbot/core/umop_config_router.py,sha256=PpCZ_SoQ6yXfgCJQiAVtuXYoowhEt2J-lCflHxNPoD0,3642
|
|
38
|
-
astrbot/core/updator.py,sha256
|
|
38
|
+
astrbot/core/updator.py,sha256=-F9elTgp4UwCdGEPwUwA0SAMQpouvAruktH4uh6nTwY,4666
|
|
39
39
|
astrbot/core/zip_updator.py,sha256=xBCtHl7XnlMksnS79e8j-FonfB3Lvs95rTmwoo1Z1T0,8824
|
|
40
40
|
astrbot/core/agent/agent.py,sha256=wquvKo18JcsJM56dwKyFFAoGhc5qLyQaeqdZ-LlZsWQ,366
|
|
41
41
|
astrbot/core/agent/handoff.py,sha256=AxO0yx4Uscy0CO-3Q3fvDOfpfr3gUscLRplH7gH7-Lc,1194
|
|
@@ -44,33 +44,33 @@ astrbot/core/agent/mcp_client.py,sha256=u52GPgpeZ1DCCVbI6x4kOGyodD_kweB8H1OgaVg-
|
|
|
44
44
|
astrbot/core/agent/message.py,sha256=lSP67PoDzzcwcu_R0vcqVcTsnLmpn8SlV_Gkg3pzRRc,5931
|
|
45
45
|
astrbot/core/agent/response.py,sha256=ddJABXu03Uw3b-YGTvRafFLJEGa40o93pIEz_CRTb4g,261
|
|
46
46
|
astrbot/core/agent/run_context.py,sha256=h-teucYKYi5o4oTbAsIlkaa04yn2OSNC-ahIF2n6cwE,719
|
|
47
|
-
astrbot/core/agent/tool.py,sha256=
|
|
47
|
+
astrbot/core/agent/tool.py,sha256=ITSAmYBp2y-QPWdZkc-KXof3UIHjQ2rmweyUPuYykFA,9440
|
|
48
48
|
astrbot/core/agent/tool_executor.py,sha256=8GGgVB_JaKGVLQUG1epeL-lvKMqgfQ7mJaOPnVytnXo,438
|
|
49
49
|
astrbot/core/agent/runners/__init__.py,sha256=KwR34OKGVSQpJ_MaGVP_MX5L1SZ4oU-lv4GuMbSF5Ys,65
|
|
50
50
|
astrbot/core/agent/runners/base.py,sha256=OHMt15x1C3O_F3EJI2Nb_3hwggGUkJHuPWWCa1kHX9o,1885
|
|
51
|
-
astrbot/core/agent/runners/tool_loop_agent_runner.py,sha256=
|
|
51
|
+
astrbot/core/agent/runners/tool_loop_agent_runner.py,sha256=0DkkaaQPvwU7fOfeiuPodJpV5FKaXNQnNAFsy_gbsCo,16470
|
|
52
52
|
astrbot/core/agent/runners/coze/coze_agent_runner.py,sha256=bc2GImNsBTyXuotl_ohKYiNqws5Dkcms_xmIoUtDJMM,13846
|
|
53
53
|
astrbot/core/agent/runners/coze/coze_api_client.py,sha256=0k8pQsFsbjKdF-jkY91qZWsC8YSaSmwC98TMTK-zqw0,10853
|
|
54
54
|
astrbot/core/agent/runners/dashscope/dashscope_agent_runner.py,sha256=xr3otT0o6kHEy_sWjUv4xh-KmES3fjlowIPrtcKYiVI,13339
|
|
55
55
|
astrbot/core/agent/runners/dify/dify_agent_runner.py,sha256=LYwpjOcBWf3XlwNVzrDvM4Kg8TK9SHSDtWmHcnmIlj0,13213
|
|
56
56
|
astrbot/core/agent/runners/dify/dify_api_client.py,sha256=OXukDVgNx3VmYw6OCzjXyP8JmDWEFuy81sD9XnC4VRo,6530
|
|
57
57
|
astrbot/core/config/__init__.py,sha256=vZjtpC7vr-IvBgSUtbS04C0wpulmCG5tPmcEP1WYE_4,172
|
|
58
|
-
astrbot/core/config/astrbot_config.py,sha256=
|
|
59
|
-
astrbot/core/config/default.py,sha256=
|
|
58
|
+
astrbot/core/config/astrbot_config.py,sha256=6bUTnMCOyaS8s6ELsWctDfUFTB53fKJQNu272dZXkdU,6347
|
|
59
|
+
astrbot/core/config/default.py,sha256=Gmc7B9udiQ0YcU6bib9gpVoBeZgPbYkz2vM-hAXjjOc,151590
|
|
60
60
|
astrbot/core/config/i18n_utils.py,sha256=T2uLmhx1nohJIou14QQBjb2TSvdxDxtfUjVHpwy13z0,3841
|
|
61
|
-
astrbot/core/db/__init__.py,sha256=
|
|
62
|
-
astrbot/core/db/po.py,sha256=
|
|
63
|
-
astrbot/core/db/sqlite.py,sha256
|
|
61
|
+
astrbot/core/db/__init__.py,sha256=Z3NMgMbxvxZyf5hroO9Kvn2TPKEoL2X21CTW96gzGLE,11200
|
|
62
|
+
astrbot/core/db/po.py,sha256=KIvtPCjf1i9IGOWXyhNKvxzEXmsfopfa7G0UaG98Ams,9313
|
|
63
|
+
astrbot/core/db/sqlite.py,sha256=bXXyA0RwgZTlwEZ6Uh4KSGMUyA3jamvkLVVcbF5K_ow,32274
|
|
64
64
|
astrbot/core/db/migration/helper.py,sha256=Kogq0FLJdvWTDuAVWLT1PlTGGJcWkDMWO37KM-G8lTk,2087
|
|
65
|
-
astrbot/core/db/migration/migra_3_to_4.py,sha256=
|
|
65
|
+
astrbot/core/db/migration/migra_3_to_4.py,sha256=AZkywKcS2aKo81k04uD2qxHsPqKWRfVz9smEnHDxWqE,15343
|
|
66
66
|
astrbot/core/db/migration/migra_45_to_46.py,sha256=wQk8NUiCNgmpSczO9U-OW6mMRHPWtJDlKuTCOGF8-WY,1560
|
|
67
67
|
astrbot/core/db/migration/migra_webchat_session.py,sha256=KN2MaT4RPgaHuwQMGoSR_h6hPGEnPbuy_sVlVISgyuE,5251
|
|
68
68
|
astrbot/core/db/migration/shared_preferences_v3.py,sha256=91zq_MrdAMF1MH5fxLaFkZO19nPNIW4gwqCCRn9u2dQ,1241
|
|
69
|
-
astrbot/core/db/migration/sqlite_v3.py,sha256=
|
|
69
|
+
astrbot/core/db/migration/sqlite_v3.py,sha256=8G0_gAP5Lj6LaB0iiWhRUbcQQnhhDZ2w2-RUesbvm4o,15084
|
|
70
70
|
astrbot/core/db/vec_db/base.py,sha256=0YxoCPNj_zVprLMamUj-OkUHJDlywIfdN8Q0Kpslm3A,1759
|
|
71
71
|
astrbot/core/db/vec_db/faiss_impl/__init__.py,sha256=S3gwB-ZL9aPJwDM5ia8a_t-xsfANKoslpJvtNd5ErcU,57
|
|
72
72
|
astrbot/core/db/vec_db/faiss_impl/document_storage.py,sha256=uR-Po1rSaANbZkIdOfo8QAwS0dcH0x4iRvnqNn80tis,13234
|
|
73
|
-
astrbot/core/db/vec_db/faiss_impl/embedding_storage.py,sha256=
|
|
73
|
+
astrbot/core/db/vec_db/faiss_impl/embedding_storage.py,sha256=39DXHWufQXnglS1Czbvzm-Vcy0faY_rdcyj-Hq3F3qE,2979
|
|
74
74
|
astrbot/core/db/vec_db/faiss_impl/sqlite_init.sql,sha256=RiF1mnAFAHtyThOsS0qjvniUF5t9Y8k-gjSlh51p2x8,681
|
|
75
75
|
astrbot/core/db/vec_db/faiss_impl/vec_db.py,sha256=gZEXdHLIKx0aroD62RZjdY_L7-Twi9VrM594VlSkTuY,7094
|
|
76
76
|
astrbot/core/knowledge_base/kb_db_sqlite.py,sha256=fkFqBZ1qjrPJoKjAzlckIdJriv5ky_ANQx2GIZqUSY8,10993
|
|
@@ -91,77 +91,78 @@ astrbot/core/knowledge_base/parsers/url_parser.py,sha256=q5vJQl8bscJKUtaNIHHGt4w
|
|
|
91
91
|
astrbot/core/knowledge_base/parsers/util.py,sha256=YKtNg98vDv0d8F-RuGtkNUAYO_aQAWz2DlsVGaIMDig,396
|
|
92
92
|
astrbot/core/knowledge_base/retrieval/__init__.py,sha256=Ou7mqN32YqKB99RHZTAqFHxN6ZpootzLtzUZe-Kjtw0,326
|
|
93
93
|
astrbot/core/knowledge_base/retrieval/hit_stopwords.txt,sha256=8LikiRxpjLdAfJYyOQ2tUUPM9wEEZ0y3Mh_XXsxAeug,5271
|
|
94
|
-
astrbot/core/knowledge_base/retrieval/manager.py,sha256=
|
|
94
|
+
astrbot/core/knowledge_base/retrieval/manager.py,sha256=1kjjcBco_TdfZ1g6mEp7lb9AVkHr1dfBHVqgWVAiBsw,8560
|
|
95
95
|
astrbot/core/knowledge_base/retrieval/rank_fusion.py,sha256=OeE4dSAsmyCt_ssAnMf7CQ4tQHlBFxjePgXVf_YwHmY,4441
|
|
96
96
|
astrbot/core/knowledge_base/retrieval/sparse_retriever.py,sha256=sOCZ9I636j3P5WGxjKXVu7Amp-2DB9jQVQn96Ff7asI,3815
|
|
97
|
-
astrbot/core/message/components.py,sha256=
|
|
97
|
+
astrbot/core/message/components.py,sha256=yePOJ9Gbidj4TVb5jHMIEJOCJPtFk9IDvIsHW8pNT5M,25918
|
|
98
98
|
astrbot/core/message/message_event_result.py,sha256=1jC6NLeO7lzcTCi2NO28057sWpTsDabICkmGsiggyhk,7204
|
|
99
99
|
astrbot/core/pipeline/__init__.py,sha256=nEepE3tnYYo0EYnzdLLyrp_k7XYg0LpQ3W6QuEeGL6k,1461
|
|
100
100
|
astrbot/core/pipeline/context.py,sha256=jfEyX9i34XM7uqeqqK6rKRDgBXfsV9UHgRpf9Wj_hnI,505
|
|
101
|
-
astrbot/core/pipeline/context_utils.py,sha256=
|
|
102
|
-
astrbot/core/pipeline/scheduler.py,sha256=
|
|
101
|
+
astrbot/core/pipeline/context_utils.py,sha256=QAtlRPvPTAzVkzqlP3bhOkQmdd1ZTU12l9vPNUROf2k,3663
|
|
102
|
+
astrbot/core/pipeline/scheduler.py,sha256=h6dwQBaZS6h4ou3EyxPWD0LMJLpS1x6KnFq8U-fTVPY,3498
|
|
103
103
|
astrbot/core/pipeline/stage.py,sha256=hpzghbberezaBJtb2cwhY8x0xi6lZrgWfD2BYv-te1g,1350
|
|
104
|
-
astrbot/core/pipeline/content_safety_check/stage.py,sha256=
|
|
104
|
+
astrbot/core/pipeline/content_safety_check/stage.py,sha256=wzHadhasKyYswVXfRJ_8My6S3mo_0Xjm6DF95TxD57g,1389
|
|
105
105
|
astrbot/core/pipeline/content_safety_check/strategies/__init__.py,sha256=47gYlyvW-Dr401fO0dMAAAmMXnSkTI63MnYak3GGvNw,164
|
|
106
106
|
astrbot/core/pipeline/content_safety_check/strategies/baidu_aip.py,sha256=-DvF8O9dZ7PDzRtQwYmIJfYHz1aA5C_gKafGw9IVgYs,1005
|
|
107
107
|
astrbot/core/pipeline/content_safety_check/strategies/keywords.py,sha256=N3bR19Deb3a-DOE-3hiuogsC068uYNL25fCe9BVkKKA,905
|
|
108
108
|
astrbot/core/pipeline/content_safety_check/strategies/strategy.py,sha256=XM2c-6apssEtAllMAI6BUXaEN_t2XINHcCoAudeKNwc,1206
|
|
109
109
|
astrbot/core/pipeline/preprocess_stage/stage.py,sha256=BFaON3u4MrQUXp0ZXETU5MIvN_w0p0KJDNc9D7Y3qsY,4202
|
|
110
|
-
astrbot/core/pipeline/process_stage/stage.py,sha256=
|
|
110
|
+
astrbot/core/pipeline/process_stage/stage.py,sha256=tOg6HYGVU1GoY921YBYVO1MTM7a55M0N8uB9tOoTomg,2406
|
|
111
111
|
astrbot/core/pipeline/process_stage/utils.py,sha256=q4V5G0PZD5b5mPh1lM-6w79LKGpp7RR7-PqYFhWpopM,4061
|
|
112
112
|
astrbot/core/pipeline/process_stage/method/agent_request.py,sha256=GlGrGCsCASC4a3PpG6Oc1907aLdl_PrUMXrFiEiEEzc,2043
|
|
113
|
-
astrbot/core/pipeline/process_stage/method/star_request.py,sha256=
|
|
113
|
+
astrbot/core/pipeline/process_stage/method/star_request.py,sha256=C-PTq_Wpq4QMS2ecfRDCcDSX3rYyldfsAN-jAaEEb-w,2430
|
|
114
114
|
astrbot/core/pipeline/process_stage/method/agent_sub_stages/internal.py,sha256=sDU4b85nV7LswGngFeYOG9VUv-BRR7gufy00ptU_Utg,21175
|
|
115
115
|
astrbot/core/pipeline/process_stage/method/agent_sub_stages/third_party.py,sha256=LNBRItSpZn0MLP4fyHQ_3gUJ8lnmCwuPlqnZDVFLI6Q,7332
|
|
116
116
|
astrbot/core/pipeline/rate_limit_check/stage.py,sha256=9EVJ0zYtxATFsj7ADyWDYcSGBRqmrMiKWp1kkD9LONI,3962
|
|
117
|
-
astrbot/core/pipeline/respond/stage.py,sha256=
|
|
118
|
-
astrbot/core/pipeline/result_decorate/stage.py,sha256=
|
|
117
|
+
astrbot/core/pipeline/respond/stage.py,sha256=bn7-O5BWDdNYgnKQmxQpZEI7o-esAZqDgFFRpoFuUcM,10786
|
|
118
|
+
astrbot/core/pipeline/result_decorate/stage.py,sha256=76cE3gnCCEuCn51CxlhzSspqqmdALTUzXdsonLNueaw,16600
|
|
119
119
|
astrbot/core/pipeline/session_status_check/stage.py,sha256=cFp6MMdFzeURjmW5LCrzsTGD_hnJN5jhDh_zoPbnFAw,1291
|
|
120
|
-
astrbot/core/pipeline/waking_check/stage.py,sha256=
|
|
120
|
+
astrbot/core/pipeline/waking_check/stage.py,sha256=u4s-UACcyFhydAbFKutvh1T4Aw6wdUyI_OU2hgCLiao,8650
|
|
121
121
|
astrbot/core/pipeline/whitelist_check/stage.py,sha256=x6o4oswIvVtHFRbuKuLFoyFEgx-gSo3IMGYvopu8d9A,2411
|
|
122
122
|
astrbot/core/platform/__init__.py,sha256=5Hhb2mIb8mS2RWfxILIMuV03XiyfqEbn4pAjvi8ntl0,361
|
|
123
|
-
astrbot/core/platform/astr_message_event.py,sha256=
|
|
124
|
-
astrbot/core/platform/astrbot_message.py,sha256=
|
|
125
|
-
astrbot/core/platform/manager.py,sha256=
|
|
123
|
+
astrbot/core/platform/astr_message_event.py,sha256=At8sT8cBrlPSZoozNsw9Bn31dpMjBXGxkwyZMERRtOQ,14746
|
|
124
|
+
astrbot/core/platform/astrbot_message.py,sha256=kdoiyZoCaH3iVua4pvKw7HHlfVpVB4bI36UeqYX1o38,2670
|
|
125
|
+
astrbot/core/platform/manager.py,sha256=s8hcV_DjUej9g8KuyV0IJHiN5Gl69GfTHNnG16CKwbw,10499
|
|
126
126
|
astrbot/core/platform/message_session.py,sha256=AGI-fAyish5VYfIQf0dg2J3HZbiYPzpPMdAwBODzc1M,1089
|
|
127
127
|
astrbot/core/platform/message_type.py,sha256=uGn5KN8B_7b9F5nFTpvLAXRlXx2VFHP3JmJjN8cC7fg,261
|
|
128
|
-
astrbot/core/platform/platform.py,sha256=
|
|
129
|
-
astrbot/core/platform/platform_metadata.py,sha256=
|
|
130
|
-
astrbot/core/platform/register.py,sha256=
|
|
131
|
-
astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py,sha256=
|
|
132
|
-
astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py,sha256=
|
|
133
|
-
astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py,sha256=
|
|
134
|
-
astrbot/core/platform/sources/dingtalk/dingtalk_event.py,sha256=
|
|
135
|
-
astrbot/core/platform/sources/discord/client.py,sha256=
|
|
136
|
-
astrbot/core/platform/sources/discord/components.py,sha256=
|
|
137
|
-
astrbot/core/platform/sources/discord/discord_platform_adapter.py,sha256=
|
|
138
|
-
astrbot/core/platform/sources/discord/discord_platform_event.py,sha256=
|
|
139
|
-
astrbot/core/platform/sources/lark/lark_adapter.py,sha256=
|
|
140
|
-
astrbot/core/platform/sources/lark/lark_event.py,sha256=
|
|
141
|
-
astrbot/core/platform/sources/
|
|
128
|
+
astrbot/core/platform/platform.py,sha256=U2jq248bfPaAcIa8PUO5aiPyAOGIN1lz6LVnqQOPFik,5114
|
|
129
|
+
astrbot/core/platform/platform_metadata.py,sha256=PCqNk-H-V7BtiQXbbyHd84s43BBIZNhUQ9X-SVKP3uM,693
|
|
130
|
+
astrbot/core/platform/register.py,sha256=ptIPhVvbzODuWwXr8J0jJSzSPfv3rr7F67gXqvIpvvk,1985
|
|
131
|
+
astrbot/core/platform/sources/aiocqhttp/aiocqhttp_message_event.py,sha256=ycNdNPKUnBJ3hJuDn_S8GM_W7XFbhumpotM8yqcOrqg,8146
|
|
132
|
+
astrbot/core/platform/sources/aiocqhttp/aiocqhttp_platform_adapter.py,sha256=wR8aTS_GJdTM5o73YJOzsjQP34miSJ_gM-Z3nwS3dB8,17914
|
|
133
|
+
astrbot/core/platform/sources/dingtalk/dingtalk_adapter.py,sha256=FBlNB7BpwGIp0frGNY45seep4hV06fPmckfOH7qFS58,9558
|
|
134
|
+
astrbot/core/platform/sources/dingtalk/dingtalk_event.py,sha256=01If6T-YJqlCfmyIh6UO668LA1f5EKUqeoZLVYkxds0,2850
|
|
135
|
+
astrbot/core/platform/sources/discord/client.py,sha256=YGrUSopQKDRFfzjCdcBQm-EcNWonBwAgXzW678G0e_c,5181
|
|
136
|
+
astrbot/core/platform/sources/discord/components.py,sha256=qKcGssKA3vBLHpad0g96KMD722Ng5jYKgpQBGQFOPX8,3971
|
|
137
|
+
astrbot/core/platform/sources/discord/discord_platform_adapter.py,sha256=rnHqOrCGCeZ0JzCKj335zjuWMqDNAJ0k8jnpjWqWmoo,19554
|
|
138
|
+
astrbot/core/platform/sources/discord/discord_platform_event.py,sha256=nVuqZtoF2Vl3Bo5-rik1YFJZz892qkj30T0qCdVSB9c,13332
|
|
139
|
+
astrbot/core/platform/sources/lark/lark_adapter.py,sha256=h4XtDgBsKCBNEI7a6DYfPprYxq8mlA_NoJeEM2Hk0jo,13963
|
|
140
|
+
astrbot/core/platform/sources/lark/lark_event.py,sha256=0H1TR-ajktyRhjLxY6-Xf8x7Zkc-2wfz4c-EeBEEOrc,6422
|
|
141
|
+
astrbot/core/platform/sources/lark/server.py,sha256=athZuUArNqlpCV6_KDkv7AQrYbh7Z99gThN1ZsCvMeg,6385
|
|
142
|
+
astrbot/core/platform/sources/misskey/misskey_adapter.py,sha256=JTPcBhCtray4rCk924X8ruy6mL7jPzUsVX0f3vzoO0E,29614
|
|
142
143
|
astrbot/core/platform/sources/misskey/misskey_api.py,sha256=YlE1zxHs0dPWJVuVsWR0Lr0d9TPQmnTwsLCQKI4p6Gk,35905
|
|
143
144
|
astrbot/core/platform/sources/misskey/misskey_event.py,sha256=2PYSU9arxzbS71jz5D__3maFFNKqxYZiGmXtLuC_aAc,6550
|
|
144
145
|
astrbot/core/platform/sources/misskey/misskey_utils.py,sha256=KEzX-_5-EfzKmLdcrZyQiUR09NHXDT0A6v3DrDp3fyk,17859
|
|
145
|
-
astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py,sha256=
|
|
146
|
-
astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py,sha256=
|
|
147
|
-
astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py,sha256=
|
|
146
|
+
astrbot/core/platform/sources/qqofficial/qqofficial_message_event.py,sha256=cfUsFRmm18-5RvMeYTXl2A3_-Me4sxb1vrjODrbuG4o,13725
|
|
147
|
+
astrbot/core/platform/sources/qqofficial/qqofficial_platform_adapter.py,sha256=Qk2Pg-CvHYhhJGabft-aFFMXHp1FuAGitNo4EHPYXsw,7572
|
|
148
|
+
astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_adapter.py,sha256=PNQQ9kNvaigG8iE48ZpJ2Y057u0fF1lMkIF8elSWjqQ,5752
|
|
148
149
|
astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_event.py,sha256=vqifw9itvrcr7sV9cL0T19qLZ7I9CWORi4oUBgZrOqc,501
|
|
149
|
-
astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py,sha256=
|
|
150
|
+
astrbot/core/platform/sources/qqofficial_webhook/qo_webhook_server.py,sha256=oV5l58IcE732c3Y7lBfJpro52dahC5scPP_SNqEMmg4,4219
|
|
150
151
|
astrbot/core/platform/sources/satori/satori_adapter.py,sha256=_pJN4CJE0WH6tI12Q4FEiXxIC6pJ74vyfFrzaJ9bs3s,28043
|
|
151
152
|
astrbot/core/platform/sources/satori/satori_event.py,sha256=agI9FYUwBZM2CnxPANxDOw9vnRqPQSCGZi6UK5UVrdA,16183
|
|
152
|
-
astrbot/core/platform/sources/slack/client.py,sha256=
|
|
153
|
-
astrbot/core/platform/sources/slack/slack_adapter.py,sha256=
|
|
154
|
-
astrbot/core/platform/sources/slack/slack_event.py,sha256=
|
|
155
|
-
astrbot/core/platform/sources/telegram/tg_adapter.py,sha256=
|
|
156
|
-
astrbot/core/platform/sources/telegram/tg_event.py,sha256=
|
|
157
|
-
astrbot/core/platform/sources/webchat/webchat_adapter.py,sha256=
|
|
158
|
-
astrbot/core/platform/sources/webchat/webchat_event.py,sha256=
|
|
153
|
+
astrbot/core/platform/sources/slack/client.py,sha256=JkdC3e12I08cnZv577krfIOlJWW4MdXgdBemVPkPuAE,6039
|
|
154
|
+
astrbot/core/platform/sources/slack/slack_adapter.py,sha256=ZUzAyQsb1ZrgWhZz9hNzoGCZJuTAb_eOW_zk3E08rdI,17260
|
|
155
|
+
astrbot/core/platform/sources/slack/slack_event.py,sha256=Vb4IHuTsRi22PxxjUZ6TKfDg0DpiYBMxAeV8mhMPBTE,8984
|
|
156
|
+
astrbot/core/platform/sources/telegram/tg_adapter.py,sha256=juXvp5iiX39oDs9WoK6SblOtQV1ovb3YJIT-pIRL-bg,16099
|
|
157
|
+
astrbot/core/platform/sources/telegram/tg_event.py,sha256=h70dObgwEPw_5NRHyMA9G06VOOX5v2x_ZX9NndNfMWQ,11327
|
|
158
|
+
astrbot/core/platform/sources/webchat/webchat_adapter.py,sha256=CjMpKAqs1DbMhD4irkHS2TwpaYaoKFhLXxR_cfuzjwg,8738
|
|
159
|
+
astrbot/core/platform/sources/webchat/webchat_event.py,sha256=P_nbvvY6rdEAFuFEonV_9zTEELrcJT-CAVtns7GvUAA,5491
|
|
159
160
|
astrbot/core/platform/sources/webchat/webchat_queue_mgr.py,sha256=2P0hQRNn7tMs9O6MLQ1GkJSSKz7R5Q8k_0JxEltSKLM,1364
|
|
160
|
-
astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py,sha256=
|
|
161
|
+
astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py,sha256=UKXfOwOGW2CtVdx-o4x1VnLXOGSwKgQsUUtQBifM2rE,41511
|
|
161
162
|
astrbot/core/platform/sources/wechatpadpro/wechatpadpro_message_event.py,sha256=pdvKtziixnvNrrk3fhJtUZrfX33LY0X9bV5GPmn4ITA,6574
|
|
162
163
|
astrbot/core/platform/sources/wechatpadpro/xml_data_parser.py,sha256=n1PZRcNjGN_w1-z2CXcIMZL7oSTprteQpPbJ992Lsu4,6306
|
|
163
|
-
astrbot/core/platform/sources/wecom/wecom_adapter.py,sha256=
|
|
164
|
-
astrbot/core/platform/sources/wecom/wecom_event.py,sha256=
|
|
164
|
+
astrbot/core/platform/sources/wecom/wecom_adapter.py,sha256=n0SlqDKoJuH0sPu0rXcvPzXD346l7Vw8lix8mAuPUVI,15608
|
|
165
|
+
astrbot/core/platform/sources/wecom/wecom_event.py,sha256=sCIM1fAfMrEIVeUZzx3sfu77412dcxbgOUt5rI3LEvk,9145
|
|
165
166
|
astrbot/core/platform/sources/wecom/wecom_kf.py,sha256=eenwV2hmH0j70OfYFsnAw9vukwHYmfF-YTzCym-6JE0,10820
|
|
166
167
|
astrbot/core/platform/sources/wecom/wecom_kf_message.py,sha256=__9zR3FCgggRDDwaEUsgfUgvhCtkUE5Uoi4jAuJrVUo,5934
|
|
167
168
|
astrbot/core/platform/sources/wecom_ai_bot/WXBizJsonMsgCrypt.py,sha256=j6dV8PbpXzB0FNAU6JB4dB_T-aIjiKED4Ig0nBQjmCc,11406
|
|
@@ -169,51 +170,51 @@ astrbot/core/platform/sources/wecom_ai_bot/__init__.py,sha256=WOYATxFKjq7ZIU0pf3
|
|
|
169
170
|
astrbot/core/platform/sources/wecom_ai_bot/ierror.py,sha256=6F08cRDiy3mbBLuTHgxkKIkgpXTQsNe4vnB4T1WvZe0,792
|
|
170
171
|
astrbot/core/platform/sources/wecom_ai_bot/wecomai_adapter.py,sha256=T_1JPEUUO_XRxJiCio2BUByVYpKFAgKy5v6CKx75h_M,18394
|
|
171
172
|
astrbot/core/platform/sources/wecom_ai_bot/wecomai_api.py,sha256=ZDLQvAEQztFXgzBAamLWFFC3BPr7jEhcjEGAcqIUd9g,12008
|
|
172
|
-
astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py,sha256=
|
|
173
|
+
astrbot/core/platform/sources/wecom_ai_bot/wecomai_event.py,sha256=vn2g1lXQjzjLIYoAIumekjATLkCu6PKBEo14MYmJQDY,5251
|
|
173
174
|
astrbot/core/platform/sources/wecom_ai_bot/wecomai_queue_mgr.py,sha256=Vs1cSUe6xM145HPEUCzE5NxVWEUaIcnfx3o5TsNHcjA,4588
|
|
174
175
|
astrbot/core/platform/sources/wecom_ai_bot/wecomai_server.py,sha256=NkQywylnI2xju4yINTYEVgJ6u2Rd_ASfj8V-4vwUpJ4,5936
|
|
175
176
|
astrbot/core/platform/sources/wecom_ai_bot/wecomai_utils.py,sha256=6vTeKwrt-zXsA0Lt_7GFk7_J0IXWX-ErVvwK9VC0EDM,5427
|
|
176
|
-
astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py,sha256=
|
|
177
|
-
astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py,sha256
|
|
177
|
+
astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py,sha256=TC_8-rXSjHqLmim-sAw2thiy8CbK5RwzKP__3rqxb-M,12740
|
|
178
|
+
astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py,sha256=tGfu6DNsqRCrr8P83VVep3Sh035-esKHTXriDsIOdJA,7233
|
|
178
179
|
astrbot/core/provider/__init__.py,sha256=0NVyKtTapnrUy0lkXVYWyM5KetwtDwXmTwBzqLG0MA4,142
|
|
179
180
|
astrbot/core/provider/entites.py,sha256=0eYiQ-xttqFTb3WZR2b1oemdZy3d5sevELvj9FixJtE,388
|
|
180
181
|
astrbot/core/provider/entities.py,sha256=AwD8KOG8dSlfQXSc1n8gx4xv2vW4niZDiaMoO1Y_dOw,12533
|
|
181
|
-
astrbot/core/provider/func_tool_manager.py,sha256=
|
|
182
|
-
astrbot/core/provider/manager.py,sha256=
|
|
183
|
-
astrbot/core/provider/provider.py,sha256=
|
|
182
|
+
astrbot/core/provider/func_tool_manager.py,sha256=2pBKHAuj-6rITOipHmH8hrs8D4N2bAUx5TcJfUVYtsk,21241
|
|
183
|
+
astrbot/core/provider/manager.py,sha256=NTMcDFqZPRBh-nI7gYkoQdeOovn_Rv4RlwV0QaaIVJQ,25102
|
|
184
|
+
astrbot/core/provider/provider.py,sha256=Jc8oXoj2-W1LP9nEung63IHGVN8LYsaCPb5Gc6jYfRE,11954
|
|
184
185
|
astrbot/core/provider/register.py,sha256=0WMYrT9vbRjeq-72HD0oRT45kJmeKA96UgSItpTJbX8,1904
|
|
185
186
|
astrbot/core/provider/sources/anthropic_source.py,sha256=oSd7I8pCGwrmTKMQuxVza0vRNqgQw7nqhMxuZnc9ro0,15586
|
|
186
|
-
astrbot/core/provider/sources/azure_tts_source.py,sha256=
|
|
187
|
-
astrbot/core/provider/sources/bailian_rerank_source.py,sha256
|
|
188
|
-
astrbot/core/provider/sources/dashscope_tts.py,sha256
|
|
189
|
-
astrbot/core/provider/sources/edge_tts_source.py,sha256=
|
|
190
|
-
astrbot/core/provider/sources/fishaudio_tts_api_source.py,sha256=
|
|
191
|
-
astrbot/core/provider/sources/gemini_embedding_source.py,sha256=
|
|
192
|
-
astrbot/core/provider/sources/gemini_source.py,sha256=
|
|
187
|
+
astrbot/core/provider/sources/azure_tts_source.py,sha256=m6zbwJGSddyTlhdD80CxWtWWUISmTSx8CboUbYCUKdM,10086
|
|
188
|
+
astrbot/core/provider/sources/bailian_rerank_source.py,sha256=fsfVqzYMaZHrsPDdJlNRKSnYOYRNwmzl6OuSo-lkF2s,7587
|
|
189
|
+
astrbot/core/provider/sources/dashscope_tts.py,sha256=-qBMwbIt_QSmWCT_uPAxrXSYuEbYJZ3WzjE_FhMhxgg,5629
|
|
190
|
+
astrbot/core/provider/sources/edge_tts_source.py,sha256=dsf6YtSGzCJvas3BqBwHSn8vlMgQ_vgD9NEwngqDlEo,4690
|
|
191
|
+
astrbot/core/provider/sources/fishaudio_tts_api_source.py,sha256=z5yJuc47iky31N0Za3Li7uwMP15N1gsKJkV9ybIbKew,5556
|
|
192
|
+
astrbot/core/provider/sources/gemini_embedding_source.py,sha256=bj4iXnMyONTyUBmBFeezPcBpjtfX_UBjMrbwMFyCis8,2607
|
|
193
|
+
astrbot/core/provider/sources/gemini_source.py,sha256=_DYVpszBGM-rpNowUDllFPOgNmn2gXCqf5DA4vFGKl4,31525
|
|
193
194
|
astrbot/core/provider/sources/gemini_tts_source.py,sha256=6LJIT2aTjoZaMszjYRzDu38prsO9G5Xg7SzJmQb2TzE,2880
|
|
194
195
|
astrbot/core/provider/sources/groq_source.py,sha256=NqmiQn37mrMsaTyGX25eNzMpIgkCifY-5TJO8DFzHaA,456
|
|
195
196
|
astrbot/core/provider/sources/gsv_selfhosted_source.py,sha256=RYQgwCc67N7RWPaODN4sSLJZn6o5gpgk_jF_KaRnD0M,5942
|
|
196
197
|
astrbot/core/provider/sources/gsvi_tts_source.py,sha256=nGGctfkzrAeTofAvB2b_VNTYHW44SzyO12B-mBWb1rY,2011
|
|
197
|
-
astrbot/core/provider/sources/minimax_tts_api_source.py,sha256=
|
|
198
|
-
astrbot/core/provider/sources/openai_embedding_source.py,sha256=
|
|
199
|
-
astrbot/core/provider/sources/openai_source.py,sha256=
|
|
198
|
+
astrbot/core/provider/sources/minimax_tts_api_source.py,sha256=oQoRYTU-_MrQqCkdtIF4AEa1HSgtQJgD3prk7Yp7b8Q,5925
|
|
199
|
+
astrbot/core/provider/sources/openai_embedding_source.py,sha256=TMUU7J-uo3KrERr1ZKTjoNK9byEm-IU0UZK5YHM3WpM,1614
|
|
200
|
+
astrbot/core/provider/sources/openai_source.py,sha256=0AmZMIkJy7C_uVsObEPDEoHuxO-fAYpjy6dreCFIvOg,24454
|
|
200
201
|
astrbot/core/provider/sources/openai_tts_api_source.py,sha256=DVviGQdBpCk6lW3LjnJHzwZr9wGkXRDNwfoQ3FYFVcs,1667
|
|
201
|
-
astrbot/core/provider/sources/sensevoice_selfhosted_source.py,sha256=
|
|
202
|
-
astrbot/core/provider/sources/vllm_rerank_source.py,sha256
|
|
202
|
+
astrbot/core/provider/sources/sensevoice_selfhosted_source.py,sha256=99I6OfSUDJDgXCKK__QNk8EaCbX3TElGIbjBY6VJkWg,3900
|
|
203
|
+
astrbot/core/provider/sources/vllm_rerank_source.py,sha256=-aXaIPRIgzzGDA7ev4Nuq4FTBM_qwMPgc5SpMtIWTKI,2355
|
|
203
204
|
astrbot/core/provider/sources/volcengine_tts.py,sha256=pcw4lXbyyiLqJWRHZEaqKMcp8lYPZsDf4OIH4e5mHOw,4065
|
|
204
|
-
astrbot/core/provider/sources/whisper_api_source.py,sha256=
|
|
205
|
-
astrbot/core/provider/sources/whisper_selfhosted_source.py,sha256=
|
|
206
|
-
astrbot/core/provider/sources/xinference_rerank_source.py,sha256=
|
|
205
|
+
astrbot/core/provider/sources/whisper_api_source.py,sha256=OuhxXufqL61Qax95P4GcsHg9w3gygXeCljyXqsCvkcg,3582
|
|
206
|
+
astrbot/core/provider/sources/whisper_selfhosted_source.py,sha256=I65tuE34UtyVXJP8QblQK5oUnoSW67qghwzW4v9DhLY,2760
|
|
207
|
+
astrbot/core/provider/sources/xinference_rerank_source.py,sha256=DsF4JVlXGeeqqycyP05zz0I-jJ3R1cXiTUsjDeaQNpE,4692
|
|
207
208
|
astrbot/core/provider/sources/xinference_stt_provider.py,sha256=DPEc7cVo2KXKGIgb8IXKagPH9qpNAdp5gx5PAink0j4,7731
|
|
208
209
|
astrbot/core/provider/sources/zhipu_source.py,sha256=oOCPXGsR9PLWOuu3h8RSVNRw1Qy2Se6dwmeFR3zk3GM,612
|
|
209
210
|
astrbot/core/star/README.md,sha256=LXxqxp3xv_oejO8ocBPOrbmLe0WB4feu43fYDNddHTQ,161
|
|
210
211
|
astrbot/core/star/__init__.py,sha256=ccAN4tGmHjKmMIuL4L0KTFpPz6_uf26yhCj0XQBf2do,2112
|
|
211
212
|
astrbot/core/star/config.py,sha256=FgrBz_fUrBU0-9BxD8enX-xGNGVbFxst3UT10sboYNA,3531
|
|
212
|
-
astrbot/core/star/context.py,sha256=
|
|
213
|
+
astrbot/core/star/context.py,sha256=voL-U8XAm-yfQWW_62L5BE1wOn3qaCDstGqvpnWTk9g,21020
|
|
213
214
|
astrbot/core/star/session_llm_manager.py,sha256=W_ZgNDyUPjMQGccqnK83hFjZvSCv5BLQeyv5fHvRLUw,5307
|
|
214
215
|
astrbot/core/star/session_plugin_manager.py,sha256=8sEzOxf_Gq-dwK_S-4rwocAFsYzx7Yi4FJuMRttPTac,2830
|
|
215
216
|
astrbot/core/star/star.py,sha256=Wkf81teNZ27JE_JrENuP0SrpFc2uFYRxHQsWo8R9-No,1826
|
|
216
|
-
astrbot/core/star/star_handler.py,sha256=
|
|
217
|
+
astrbot/core/star/star_handler.py,sha256=LQqM6szmedro_TtAMJRFt3vn8uQtiOM25Af5PmlOHKs,7529
|
|
217
218
|
astrbot/core/star/star_manager.py,sha256=_oFOYaf8IFhWy2KwRJ6TVVbjoywYLt2imuv5yTAqP4o,40343
|
|
218
219
|
astrbot/core/star/star_tools.py,sha256=4q8emjyTbyIsVXHmzT88kX9uK28rIhlHc0re40Xm6m0,10847
|
|
219
220
|
astrbot/core/star/updator.py,sha256=4pl42Ks_yjJ3kydx3BwOqocAczhhFBrRnxhBKh4_0Eo,3106
|
|
@@ -227,51 +228,51 @@ astrbot/core/star/filter/platform_adapter_type.py,sha256=90h4g9xB1IfC8ws53M-pjeP
|
|
|
227
228
|
astrbot/core/star/filter/regex.py,sha256=GHB5YvBMLFbOOiFVUnEHaqHTER7sU1pAVrAcXdwBtkQ,545
|
|
228
229
|
astrbot/core/star/register/__init__.py,sha256=Z2dbNKCsh5wzh9a6XFvb_x-9wO5SvowynJAd8kpWEJU,992
|
|
229
230
|
astrbot/core/star/register/star.py,sha256=Eto7nD_HFuCNt-VJnXUXKv2D7a5TQ6qkhzLJ_itXo_8,1920
|
|
230
|
-
astrbot/core/star/register/star_handler.py,sha256=
|
|
231
|
+
astrbot/core/star/register/star_handler.py,sha256=SF_peEWGfAPxGvwvsliMdARsW7e3u86AhNBoSamC1JY,18097
|
|
231
232
|
astrbot/core/utils/astrbot_path.py,sha256=tQFD55EFwGbpR1tpoJADpdElPS5iTFAZVLIxCVvKypY,1213
|
|
232
233
|
astrbot/core/utils/command_parser.py,sha256=Cwd4zzyKEoC-er0a-9WZ5n2g4F8eH9p6BHxD96gjaVM,617
|
|
233
234
|
astrbot/core/utils/file_extract.py,sha256=I9jgcaPYK74-BwuI18oUpoupnPYINeP3QFD3kFodqBA,697
|
|
234
|
-
astrbot/core/utils/io.py,sha256=
|
|
235
|
+
astrbot/core/utils/io.py,sha256=WUgM6V9_a-hi3CRKS9a-RFRAkZ5yu0M3WgpbR3-3tCw,10817
|
|
235
236
|
astrbot/core/utils/log_pipe.py,sha256=jphGRAdmzhBVRKdpJwOP1AtpbGlun9v7Cr50kHZtlyo,883
|
|
236
237
|
astrbot/core/utils/metrics.py,sha256=CxEkdV2gJai0mw1IbL4DJ81WiQ5mY7v9M_-T6UtRJDs,2427
|
|
237
238
|
astrbot/core/utils/migra_helper.py,sha256=pnv3VvDD_9gj1nKjroVQYUeePpvyd0DXJz9CoJvG_Og,2763
|
|
238
239
|
astrbot/core/utils/path_util.py,sha256=FXx9oBrsL-dcq-6OlmiSwk2ygqJ9vMmkCBEi2sL50f8,3050
|
|
239
240
|
astrbot/core/utils/pip_installer.py,sha256=H8Bk5QKh-GBBRvGp7sDKDkh6A1UDy4xU9AtUL10B6Jg,1969
|
|
240
241
|
astrbot/core/utils/session_lock.py,sha256=fZDIbyy1nYfgsQSGUc_pWHZp4Kv6inXjENP8ay2bKGI,913
|
|
241
|
-
astrbot/core/utils/session_waiter.py,sha256=
|
|
242
|
-
astrbot/core/utils/shared_preferences.py,sha256=
|
|
243
|
-
astrbot/core/utils/tencent_record_helper.py,sha256=
|
|
244
|
-
astrbot/core/utils/version_comparator.py,sha256=
|
|
245
|
-
astrbot/core/utils/webhook_utils.py,sha256=
|
|
246
|
-
astrbot/core/utils/t2i/__init__.py,sha256=
|
|
247
|
-
astrbot/core/utils/t2i/local_strategy.py,sha256=
|
|
242
|
+
astrbot/core/utils/session_waiter.py,sha256=Q4zdrvxs-cLLopLCQES6bYZ6MQrajl4fzqZjmmXX170,7073
|
|
243
|
+
astrbot/core/utils/shared_preferences.py,sha256=1dod97F8dT3itDi_APZXqWNdiB57FRhbWlMyyYTbogA,6755
|
|
244
|
+
astrbot/core/utils/tencent_record_helper.py,sha256=utfxCdqn4Beiv7Vd5OosNSLJQuLMusUXdbsxpDV2IxM,5048
|
|
245
|
+
astrbot/core/utils/version_comparator.py,sha256=_VnI50v1xqcZ-wXtOCwknUVwq-wk2Pjh3TLBVe1MTf8,3405
|
|
246
|
+
astrbot/core/utils/webhook_utils.py,sha256=B-dnZdXFAoRo4GMO8FjjT4Em7IYIsU8olJlMCqJt2pc,2021
|
|
247
|
+
astrbot/core/utils/t2i/__init__.py,sha256=wAPd4gcBfuUfFmp_QdYR2AyxmQgMgtY3-AhblbGHqMk,336
|
|
248
|
+
astrbot/core/utils/t2i/local_strategy.py,sha256=ltnm2mHo4qyLYwPvHvlCTmeTAJNtWJCDSPqkWgqfU00,29882
|
|
248
249
|
astrbot/core/utils/t2i/network_strategy.py,sha256=mezOtitI3XPx1qqJOTbaRn-2xIlpikZ1ZI633zXXjaw,4940
|
|
249
250
|
astrbot/core/utils/t2i/renderer.py,sha256=3IH-eLxOCIpEPHjXA1GF-ylGGyKz4GlMIbkjfvQg6-o,2004
|
|
250
251
|
astrbot/core/utils/t2i/template_manager.py,sha256=Pfht7PZCdVteF93lja1LZQcUFNeCOKLs6EFx9XMeYKQ,4520
|
|
251
252
|
astrbot/core/utils/t2i/template/astrbot_powershell.html,sha256=UcjetoIJG3pJRUHMDOor3Nhj7FFmVXXpkySkpXXztO4,4943
|
|
252
253
|
astrbot/core/utils/t2i/template/base.html,sha256=fQvq4I4lrlH2s_jwAzj62lWeC4g87xXsYJMJ0XunCPA,6619
|
|
253
|
-
astrbot/dashboard/server.py,sha256=
|
|
254
|
+
astrbot/dashboard/server.py,sha256=oUeejzlq3CtWthxTlTa1kO3EjBxswRLXcZbZUV3Sc5c,9692
|
|
254
255
|
astrbot/dashboard/utils.py,sha256=KrAv0lnPaVR0bx8yevT1CLGbSNsJizlfkKkPEtVVANI,5355
|
|
255
256
|
astrbot/dashboard/routes/__init__.py,sha256=MAQlYoPi-AwUftdp1Ixg9E6im6Af5eruuZ525wtj8G0,840
|
|
256
257
|
astrbot/dashboard/routes/auth.py,sha256=rYkvt3MpCY9BhWjG0DUoX3YaBkJT1Id7M2pKqTmXbvo,2946
|
|
257
|
-
astrbot/dashboard/routes/chat.py,sha256=
|
|
258
|
-
astrbot/dashboard/routes/config.py,sha256=
|
|
258
|
+
astrbot/dashboard/routes/chat.py,sha256=XcXuGfLZvjUeYCFPosoMpIAaecuvq48s8aFHrT9P2qc,24822
|
|
259
|
+
astrbot/dashboard/routes/config.py,sha256=jwrlP23zbTpnrMhQKrTfBjb1NLEln4tDYNExRP0BQeM,33438
|
|
259
260
|
astrbot/dashboard/routes/conversation.py,sha256=sFHgkpNDdTR9qkSOC_JfSjzkfTuv63iaMxvh52wQUzM,10773
|
|
260
261
|
astrbot/dashboard/routes/file.py,sha256=gULvXP9PnVOQlyv_PCEzZQE5ptnGQEjFPvwOLxdVgb4,708
|
|
261
|
-
astrbot/dashboard/routes/knowledge_base.py,sha256=
|
|
262
|
-
astrbot/dashboard/routes/log.py,sha256=
|
|
262
|
+
astrbot/dashboard/routes/knowledge_base.py,sha256=GZ_iDYV2uXXzvGMF-4VJ8hZxLdHIWSSfg_3wlWwsizA,46081
|
|
263
|
+
astrbot/dashboard/routes/log.py,sha256=YJWj1982YUSzja_MZQS5UoKf6pImQoeP0zaS0AGp0nY,2299
|
|
263
264
|
astrbot/dashboard/routes/persona.py,sha256=MEcNHMxJmyvZ3ZhytI5IP7L3FSlMr1JDvdd5efN9Q-M,7833
|
|
264
|
-
astrbot/dashboard/routes/platform.py,sha256=
|
|
265
|
-
astrbot/dashboard/routes/plugin.py,sha256=
|
|
266
|
-
astrbot/dashboard/routes/route.py,sha256=
|
|
265
|
+
astrbot/dashboard/routes/platform.py,sha256=JfQzzmWSnahKjke3lBUeXo7Auzz_nTB0mUv0fIf_Nag,3392
|
|
266
|
+
astrbot/dashboard/routes/plugin.py,sha256=WdOwayDtTcVMKvSe8j6c3UK2b3BqUEgkSdl54JyrJp4,25216
|
|
267
|
+
astrbot/dashboard/routes/route.py,sha256=vhNIWFhic1eVHRx7ej8OUmmcNDA3FPaRPdXO_-SS4K4,1572
|
|
267
268
|
astrbot/dashboard/routes/session_management.py,sha256=3h-zlkiAN4MQQLETGORNoWDtnGCSbqxnK2mTu6jMeCY,14998
|
|
268
269
|
astrbot/dashboard/routes/stat.py,sha256=OgNM491WFuDSAQbbJUGl4_UsqrQNefOGMMRIPLLoVBQ,6780
|
|
269
270
|
astrbot/dashboard/routes/static_file.py,sha256=7KnNcOb1BVqSTft114LhGsDkfg69X2jHEm0tOK0kW0Y,1169
|
|
270
271
|
astrbot/dashboard/routes/t2i.py,sha256=F6smxdL99MF7cRw3hqS6-2GErw8Zhsv0V0mfBUeEk-c,8931
|
|
271
272
|
astrbot/dashboard/routes/tools.py,sha256=YsVFrwVIhxAI-Ikme7YPrHVnPVTkJ1IaH7n6ciREjdE,14663
|
|
272
273
|
astrbot/dashboard/routes/update.py,sha256=qXiqQ_dbqRVftOzGgCQrvK8-qopVK6zKhhVVJ9SK26U,6648
|
|
273
|
-
astrbot-4.
|
|
274
|
-
astrbot-4.
|
|
275
|
-
astrbot-4.
|
|
276
|
-
astrbot-4.
|
|
277
|
-
astrbot-4.
|
|
274
|
+
astrbot-4.9.0.dist-info/METADATA,sha256=QlWtlZR3KRC0kdCKcPYfHKRK_dt-CVCNkaZRAFWTtuo,11820
|
|
275
|
+
astrbot-4.9.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
276
|
+
astrbot-4.9.0.dist-info/entry_points.txt,sha256=OEF09YmhBWYuViXrvTLLpstF4ccmNwDL8r7nnFD0pfI,53
|
|
277
|
+
astrbot-4.9.0.dist-info/licenses/LICENSE,sha256=zPfQj5Mq8-gThIiBcxETr7t8gND9bZWOjTGQAr80TQI,34500
|
|
278
|
+
astrbot-4.9.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|