AstrBot 4.10.1__py3-none-any.whl → 4.10.3__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.
Files changed (65) hide show
  1. astrbot/builtin_stars/astrbot/long_term_memory.py +186 -0
  2. astrbot/builtin_stars/astrbot/main.py +128 -0
  3. astrbot/builtin_stars/astrbot/metadata.yaml +4 -0
  4. astrbot/builtin_stars/astrbot/process_llm_request.py +245 -0
  5. astrbot/builtin_stars/builtin_commands/commands/__init__.py +31 -0
  6. astrbot/builtin_stars/builtin_commands/commands/admin.py +77 -0
  7. astrbot/builtin_stars/builtin_commands/commands/alter_cmd.py +173 -0
  8. astrbot/builtin_stars/builtin_commands/commands/conversation.py +366 -0
  9. astrbot/builtin_stars/builtin_commands/commands/help.py +88 -0
  10. astrbot/builtin_stars/builtin_commands/commands/llm.py +20 -0
  11. astrbot/builtin_stars/builtin_commands/commands/persona.py +142 -0
  12. astrbot/builtin_stars/builtin_commands/commands/plugin.py +120 -0
  13. astrbot/builtin_stars/builtin_commands/commands/provider.py +329 -0
  14. astrbot/builtin_stars/builtin_commands/commands/setunset.py +36 -0
  15. astrbot/builtin_stars/builtin_commands/commands/sid.py +36 -0
  16. astrbot/builtin_stars/builtin_commands/commands/t2i.py +23 -0
  17. astrbot/builtin_stars/builtin_commands/commands/tool.py +31 -0
  18. astrbot/builtin_stars/builtin_commands/commands/tts.py +36 -0
  19. astrbot/builtin_stars/builtin_commands/commands/utils/rst_scene.py +26 -0
  20. astrbot/builtin_stars/builtin_commands/main.py +237 -0
  21. astrbot/builtin_stars/builtin_commands/metadata.yaml +4 -0
  22. astrbot/builtin_stars/python_interpreter/main.py +537 -0
  23. astrbot/builtin_stars/python_interpreter/metadata.yaml +4 -0
  24. astrbot/builtin_stars/python_interpreter/requirements.txt +1 -0
  25. astrbot/builtin_stars/python_interpreter/shared/api.py +22 -0
  26. astrbot/builtin_stars/reminder/main.py +266 -0
  27. astrbot/builtin_stars/reminder/metadata.yaml +4 -0
  28. astrbot/builtin_stars/session_controller/main.py +114 -0
  29. astrbot/builtin_stars/session_controller/metadata.yaml +5 -0
  30. astrbot/builtin_stars/web_searcher/engines/__init__.py +111 -0
  31. astrbot/builtin_stars/web_searcher/engines/bing.py +30 -0
  32. astrbot/builtin_stars/web_searcher/engines/sogo.py +52 -0
  33. astrbot/builtin_stars/web_searcher/main.py +436 -0
  34. astrbot/builtin_stars/web_searcher/metadata.yaml +4 -0
  35. astrbot/cli/__init__.py +1 -1
  36. astrbot/core/agent/message.py +9 -0
  37. astrbot/core/agent/runners/tool_loop_agent_runner.py +2 -1
  38. astrbot/core/backup/__init__.py +26 -0
  39. astrbot/core/backup/constants.py +77 -0
  40. astrbot/core/backup/exporter.py +476 -0
  41. astrbot/core/backup/importer.py +761 -0
  42. astrbot/core/config/default.py +1 -1
  43. astrbot/core/log.py +1 -1
  44. astrbot/core/pipeline/process_stage/method/agent_sub_stages/internal.py +1 -1
  45. astrbot/core/pipeline/waking_check/stage.py +2 -1
  46. astrbot/core/provider/entities.py +32 -9
  47. astrbot/core/provider/provider.py +3 -1
  48. astrbot/core/provider/sources/anthropic_source.py +80 -27
  49. astrbot/core/provider/sources/fishaudio_tts_api_source.py +14 -6
  50. astrbot/core/provider/sources/gemini_source.py +75 -26
  51. astrbot/core/provider/sources/openai_source.py +68 -25
  52. astrbot/core/star/command_management.py +45 -4
  53. astrbot/core/star/context.py +1 -1
  54. astrbot/core/star/star_manager.py +11 -13
  55. astrbot/core/utils/astrbot_path.py +34 -0
  56. astrbot/dashboard/routes/__init__.py +2 -0
  57. astrbot/dashboard/routes/backup.py +589 -0
  58. astrbot/dashboard/routes/command.py +2 -1
  59. astrbot/dashboard/routes/log.py +44 -10
  60. astrbot/dashboard/server.py +8 -1
  61. {astrbot-4.10.1.dist-info → astrbot-4.10.3.dist-info}/METADATA +2 -2
  62. {astrbot-4.10.1.dist-info → astrbot-4.10.3.dist-info}/RECORD +65 -26
  63. {astrbot-4.10.1.dist-info → astrbot-4.10.3.dist-info}/WHEEL +0 -0
  64. {astrbot-4.10.1.dist-info → astrbot-4.10.3.dist-info}/entry_points.txt +0 -0
  65. {astrbot-4.10.1.dist-info → astrbot-4.10.3.dist-info}/licenses/LICENSE +0 -0
@@ -19,6 +19,7 @@ from astrbot.core.utils.astrbot_path import get_astrbot_data_path
19
19
  from astrbot.core.utils.io import get_local_ip_addresses
20
20
 
21
21
  from .routes import *
22
+ from .routes.backup import BackupRoute
22
23
  from .routes.platform import PlatformRoute
23
24
  from .routes.route import Response, RouteContext
24
25
  from .routes.session_management import SessionManagementRoute
@@ -85,6 +86,7 @@ class AstrBotDashboard:
85
86
  self.t2i_route = T2iRoute(self.context, core_lifecycle)
86
87
  self.kb_route = KnowledgeBaseRoute(self.context, core_lifecycle)
87
88
  self.platform_route = PlatformRoute(self.context, core_lifecycle)
89
+ self.backup_route = BackupRoute(self.context, db, core_lifecycle)
88
90
 
89
91
  self.app.add_url_rule(
90
92
  "/api/plug/<path:subpath>",
@@ -108,7 +110,12 @@ class AstrBotDashboard:
108
110
  async def auth_middleware(self):
109
111
  if not request.path.startswith("/api"):
110
112
  return None
111
- allowed_endpoints = ["/api/auth/login", "/api/file", "/api/platform/webhook"]
113
+ allowed_endpoints = [
114
+ "/api/auth/login",
115
+ "/api/file",
116
+ "/api/platform/webhook",
117
+ "/api/stat/start-time",
118
+ ]
112
119
  if any(request.path.startswith(prefix) for prefix in allowed_endpoints):
113
120
  return None
114
121
  # 声明 JWT
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: AstrBot
3
- Version: 4.10.1
3
+ Version: 4.10.3
4
4
  Summary: Easy-to-use multi-platform LLM chatbot and development framework
5
5
  License-File: LICENSE
6
6
  Keywords: Astrbot,Astrbot Module,Astrbot Plugin
@@ -36,7 +36,7 @@ Requires-Dist: openai>=1.78.0
36
36
  Requires-Dist: ormsgpack>=1.9.1
37
37
  Requires-Dist: pillow>=11.2.1
38
38
  Requires-Dist: pip>=25.1.1
39
- Requires-Dist: psutil>=5.8.0
39
+ Requires-Dist: psutil<7.2.0,>=5.8.0
40
40
  Requires-Dist: py-cord>=2.6.1
41
41
  Requires-Dist: pydantic~=2.10.3
42
42
  Requires-Dist: pydub>=0.25.1
@@ -8,7 +8,41 @@ 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=ogZ1wJ10Itlh9CdbwovCzGjxyYPJlQvG3lxFz6oBJ-c,23
11
+ astrbot/builtin_stars/astrbot/long_term_memory.py,sha256=Gra7dqiqXLBH_u4M6TZmu49lxiolotbDNTwbh2aVTiA,7676
12
+ astrbot/builtin_stars/astrbot/main.py,sha256=9vELrADt5JYjkcu6yqi8FbU3x9MM5XHEGz_zCjGK5eM,5280
13
+ astrbot/builtin_stars/astrbot/metadata.yaml,sha256=GCPK0piMKr4C6Bb0kaBJYhiqPDoMEAYJJp2MV5pXs4k,197
14
+ astrbot/builtin_stars/astrbot/process_llm_request.py,sha256=0BOhk5iYhFvi0OQg8epdQXoND6vKX2KkHzMLF-A9KWQ,9685
15
+ astrbot/builtin_stars/builtin_commands/main.py,sha256=bXZeslvWnwCt_lcoef6Bhiq4QsuuUEijFlBH1SO7-eU,8476
16
+ astrbot/builtin_stars/builtin_commands/metadata.yaml,sha256=x0URUKI3S14RRXQ-ewgJy4dYXMKxZcEo2pSKeApGleg,152
17
+ astrbot/builtin_stars/builtin_commands/commands/__init__.py,sha256=hnIQIH-k2VTTk2CAKezFsOcxvjRRPt6U3a3s6Db9w1w,756
18
+ astrbot/builtin_stars/builtin_commands/commands/admin.py,sha256=MTUfXURpdCiGKPG6bZ68lc9WttyPNXuy-DJCQVkT92M,3339
19
+ astrbot/builtin_stars/builtin_commands/commands/alter_cmd.py,sha256=JL62Es7gCymcRd0SKcPcufFt3fUhaoB4T0WpHbv8PCA,6876
20
+ astrbot/builtin_stars/builtin_commands/commands/conversation.py,sha256=igJTY9BntCSlSvcWLr37aCPX_5qiN7AyhjcKZZgTq54,13861
21
+ astrbot/builtin_stars/builtin_commands/commands/help.py,sha256=rEBRwxqvoO11Mr6erOn2reuBOUVrq_f8YF92TmnxZSI,3008
22
+ astrbot/builtin_stars/builtin_commands/commands/llm.py,sha256=i3gqhfDolpj_KhSSq6LoRM9sbV4fqdZUdv3tXYcJBDs,712
23
+ astrbot/builtin_stars/builtin_commands/commands/persona.py,sha256=34uy4ZmE310aiNgHzJ8UNOBZWfZe4fxVnf2YA2KwDBI,5405
24
+ astrbot/builtin_stars/builtin_commands/commands/plugin.py,sha256=d0X-W8pGISmW3WN_ZIbLZMnPq7uE5klcGXUjRE8zNno,5498
25
+ astrbot/builtin_stars/builtin_commands/commands/provider.py,sha256=_aaeeFIypLF2ODmapGSfhLHSO5-O5PJgbBhfb3bVRl4,13434
26
+ astrbot/builtin_stars/builtin_commands/commands/setunset.py,sha256=MXSostn5tzq5SerKKYeqZ0a-bADq1UW6xhgNkefoawU,1363
27
+ astrbot/builtin_stars/builtin_commands/commands/sid.py,sha256=mQIk2f6zFjO7ukZf-6ZSFMLhuMCafCuRjFBTieO8kj4,1390
28
+ astrbot/builtin_stars/builtin_commands/commands/t2i.py,sha256=cfE8Z75EQEFvpxA2k1hLNWHQk5OUAHQMMn9_m5mMB2k,775
29
+ astrbot/builtin_stars/builtin_commands/commands/tool.py,sha256=lGJZOprJ2DhsBfp6XRRJILGr_FZCpf4maQSgL9PQ5mk,1140
30
+ astrbot/builtin_stars/builtin_commands/commands/tts.py,sha256=HhfzcW0z4KAbFKfX9YmnIjMINNeaKg7lBMvXcQQoVVI,1292
31
+ astrbot/builtin_stars/builtin_commands/commands/utils/rst_scene.py,sha256=dOL-hjTceG-vrxatB9Cv3xLDFfRlTO_ifWb9Pc7Za7k,781
32
+ astrbot/builtin_stars/python_interpreter/main.py,sha256=Rt6_5peWQ35vz4FlDOSsR0yj20kVitiTy-KWW9lCKCo,21249
33
+ astrbot/builtin_stars/python_interpreter/metadata.yaml,sha256=vTngeJ2opZsSGZ6A629yRlG1TnXlJCWF93xUFPjPkWs,92
34
+ astrbot/builtin_stars/python_interpreter/requirements.txt,sha256=gkpuxm0LE4llu9-su6O-rqBL-WAN6omgCAnkThaCOSU,9
35
+ astrbot/builtin_stars/python_interpreter/shared/api.py,sha256=sWUWVDdKh2e2sdwxtpvnOlgYNYw02F0r_bxhRKX8bXM,595
36
+ astrbot/builtin_stars/reminder/main.py,sha256=hiOS-gQ8Ky_AF7ghdj0yReokt6YWV76707V3ILYoT_A,10584
37
+ astrbot/builtin_stars/reminder/metadata.yaml,sha256=LQ5czq7iDtTVPmxktLRvAjsIVKE1WqXRxG-CNWFJl_Y,83
38
+ astrbot/builtin_stars/session_controller/main.py,sha256=a4rvB65Z-Nzf7Wmhq69Ki6xRBeuWOLkE1IGiI8f-kpE,5406
39
+ astrbot/builtin_stars/session_controller/metadata.yaml,sha256=JyV3_l1BjPdklELpe2L6V5C03i_oymXaQnnf3y_gFgc,126
40
+ astrbot/builtin_stars/web_searcher/main.py,sha256=nRecRp2n3VgDvfmk-deJR5ExZGJS7Vdynhj-5nJzbeQ,17468
41
+ astrbot/builtin_stars/web_searcher/metadata.yaml,sha256=aHAKtP8UZJaddzIN2eFfglTOIAnLyJ9-wyM00Io6P7E,99
42
+ astrbot/builtin_stars/web_searcher/engines/__init__.py,sha256=yQtZwF4E19yVcyRIOLP9KEgnADXjeQd-AmCtVZtvjBs,4269
43
+ astrbot/builtin_stars/web_searcher/engines/bing.py,sha256=pn3DPR-5SO2D_RtBIU3l9Ph7PTUB-FCZAMCYuk6kd6Q,1035
44
+ astrbot/builtin_stars/web_searcher/engines/sogo.py,sha256=YA7pA5-335r7UgKpyUPAeGGZQbYEwDBO8bm08Ro8Xg0,1701
45
+ astrbot/cli/__init__.py,sha256=eMAkc0isr0WH9pgpjEXgL07Syl0h-mVoZgdwa639B4k,23
12
46
  astrbot/cli/__main__.py,sha256=QobgMyFoLNTgI_OYddhGOZ9ZvQeBVjjz79mA2cC2OEU,1758
13
47
  astrbot/cli/commands/__init__.py,sha256=eAgppZQIqFO1ylQJFABeYrzQ0oZqPWjtE80aKIPB3ks,149
14
48
  astrbot/cli/commands/cmd_conf.py,sha256=6-YLicBt_zjWTzaVLUJ1VQLQPbDEPYACB9IVnN8Zvng,6330
@@ -31,7 +65,7 @@ astrbot/core/event_bus.py,sha256=5Lg5L0UcwcJeL9NuX7DiTSRR7fr2IoaSbR6ECDKD4K8,272
31
65
  astrbot/core/exceptions.py,sha256=GVCUgAjpvUHLL59MkJalFrSp_HbtliChu7XII_Px2WM,219
32
66
  astrbot/core/file_token_service.py,sha256=8X0Qyo-NPGhtxy6IcRsJg7Z2tx_ULPf_7OKvw-KBk6o,3317
33
67
  astrbot/core/initial_loader.py,sha256=q798G8wEti7-p3UC0y1GB3MOK-kO6z1Nt826iO5nJVA,1802
34
- astrbot/core/log.py,sha256=MQ249OPPudl-X8FQrs22IBR1lhPl4q8EdSvHy1K_EH8,8532
68
+ astrbot/core/log.py,sha256=85jID6PgcFx8S6RzBIjF-AJa8FQniqE5NNQuXUSQOCo,8545
35
69
  astrbot/core/persona_mgr.py,sha256=g6Xzhrvlvk9YRrcPNEpevHiCa6GVfut9NoKX7PRNmXM,7434
36
70
  astrbot/core/platform_message_history_mgr.py,sha256=0frxrq6Bt18OXbt24uRnQl039wpi2gK5L9ONLtBuMsM,1580
37
71
  astrbot/core/umop_config_router.py,sha256=PpCZ_SoQ6yXfgCJQiAVtuXYoowhEt2J-lCflHxNPoD0,3642
@@ -41,22 +75,26 @@ astrbot/core/agent/agent.py,sha256=wquvKo18JcsJM56dwKyFFAoGhc5qLyQaeqdZ-LlZsWQ,3
41
75
  astrbot/core/agent/handoff.py,sha256=AxO0yx4Uscy0CO-3Q3fvDOfpfr3gUscLRplH7gH7-Lc,1194
42
76
  astrbot/core/agent/hooks.py,sha256=ooe9uUz7czlVt2W7jTDwkRbI-qDrOOXWjCaXtiAkrvE,830
43
77
  astrbot/core/agent/mcp_client.py,sha256=u52GPgpeZ1DCCVbI6x4kOGyodD_kweB8H1OgaVg-BZs,14085
44
- astrbot/core/agent/message.py,sha256=AdpEkpbZUmrCPhVZCGPTTjkR6NH2p4NAqgaQ9MJRWjw,5939
78
+ astrbot/core/agent/message.py,sha256=Z6LKyU1kP-85e4UkUqsg2f21dp7k3zMq-zvM9PHS2UQ,6216
45
79
  astrbot/core/agent/response.py,sha256=g1aw5zE3Y_PsU7z1SVrNTJRlGnqdyuqG5-49LewsL2E,859
46
80
  astrbot/core/agent/run_context.py,sha256=PJYgGlq_m6eBo1ftHE0M37UzOwTcXJNeKgKri1NC2Hk,677
47
81
  astrbot/core/agent/tool.py,sha256=ITSAmYBp2y-QPWdZkc-KXof3UIHjQ2rmweyUPuYykFA,9440
48
82
  astrbot/core/agent/tool_executor.py,sha256=8GGgVB_JaKGVLQUG1epeL-lvKMqgfQ7mJaOPnVytnXo,438
49
83
  astrbot/core/agent/runners/__init__.py,sha256=KwR34OKGVSQpJ_MaGVP_MX5L1SZ4oU-lv4GuMbSF5Ys,65
50
84
  astrbot/core/agent/runners/base.py,sha256=OHMt15x1C3O_F3EJI2Nb_3hwggGUkJHuPWWCa1kHX9o,1885
51
- astrbot/core/agent/runners/tool_loop_agent_runner.py,sha256=ZXSvTb9SoZ98VfVzneL3pDpoRObasGSU8mTCJB9p91I,19520
85
+ astrbot/core/agent/runners/tool_loop_agent_runner.py,sha256=Zfo6aqOPQi6EdtVfCwzu_FFL-cXjDkuVCxYfV4N6h9I,19633
52
86
  astrbot/core/agent/runners/coze/coze_agent_runner.py,sha256=bc2GImNsBTyXuotl_ohKYiNqws5Dkcms_xmIoUtDJMM,13846
53
87
  astrbot/core/agent/runners/coze/coze_api_client.py,sha256=0k8pQsFsbjKdF-jkY91qZWsC8YSaSmwC98TMTK-zqw0,10853
54
88
  astrbot/core/agent/runners/dashscope/dashscope_agent_runner.py,sha256=xr3otT0o6kHEy_sWjUv4xh-KmES3fjlowIPrtcKYiVI,13339
55
89
  astrbot/core/agent/runners/dify/dify_agent_runner.py,sha256=LYwpjOcBWf3XlwNVzrDvM4Kg8TK9SHSDtWmHcnmIlj0,13213
56
90
  astrbot/core/agent/runners/dify/dify_api_client.py,sha256=OXukDVgNx3VmYw6OCzjXyP8JmDWEFuy81sD9XnC4VRo,6530
91
+ astrbot/core/backup/__init__.py,sha256=8uBY2FPYWfIsVZcAgfMWh5-Kwkd50HtyiM0gCETuD4U,641
92
+ astrbot/core/backup/constants.py,sha256=_e-SjZ-uvithscUqnqvPVtIPWN3PBPkSu4yHHKM7pHM,2251
93
+ astrbot/core/backup/exporter.py,sha256=ZrsYARsmpCF70Uy92_Qk2broRX0-FiKdLx-BdXcdWuM,18952
94
+ astrbot/core/backup/importer.py,sha256=efGW5-5ZAfvN1mg4rcc5OrcFTLfyj7L9T0Yd7SBUlNo,28618
57
95
  astrbot/core/config/__init__.py,sha256=vZjtpC7vr-IvBgSUtbS04C0wpulmCG5tPmcEP1WYE_4,172
58
96
  astrbot/core/config/astrbot_config.py,sha256=6bUTnMCOyaS8s6ELsWctDfUFTB53fKJQNu272dZXkdU,6347
59
- astrbot/core/config/default.py,sha256=sGTmORVNNVAqbXoNyOnBCGSE3Cs6sYpE0UdFrRxvBRc,147674
97
+ astrbot/core/config/default.py,sha256=g24hUkzmn-CzWP66Gfg1GDwa7IFjTnQas_VgnW3jWWA,147674
60
98
  astrbot/core/config/i18n_utils.py,sha256=HJn_0XeeVS9ryCBelYfnc0nEn10LlX702fcSSFrF1J8,3879
61
99
  astrbot/core/db/__init__.py,sha256=OnvNaC76hYp28Bq9zkFXMl19zn7w-FC1zxyLgsemGvU,13400
62
100
  astrbot/core/db/po.py,sha256=eoI4sjpFb9CwRy6_Gf6-zHVSka6-oJr0LA4qcepqHzU,11804
@@ -111,13 +149,13 @@ astrbot/core/pipeline/process_stage/stage.py,sha256=tOg6HYGVU1GoY921YBYVO1MTM7a5
111
149
  astrbot/core/pipeline/process_stage/utils.py,sha256=q4V5G0PZD5b5mPh1lM-6w79LKGpp7RR7-PqYFhWpopM,4061
112
150
  astrbot/core/pipeline/process_stage/method/agent_request.py,sha256=GlGrGCsCASC4a3PpG6Oc1907aLdl_PrUMXrFiEiEEzc,2043
113
151
  astrbot/core/pipeline/process_stage/method/star_request.py,sha256=C-PTq_Wpq4QMS2ecfRDCcDSX3rYyldfsAN-jAaEEb-w,2430
114
- astrbot/core/pipeline/process_stage/method/agent_sub_stages/internal.py,sha256=RSeEqvJEV33RH6OGHEdDaCYyv6zt7RosG4j-hVdbjnc,21263
152
+ astrbot/core/pipeline/process_stage/method/agent_sub_stages/internal.py,sha256=su26S_zgh2THNB0TZMsyro0NokV8XE9vLslK60zTC2c,21276
115
153
  astrbot/core/pipeline/process_stage/method/agent_sub_stages/third_party.py,sha256=LNBRItSpZn0MLP4fyHQ_3gUJ8lnmCwuPlqnZDVFLI6Q,7332
116
154
  astrbot/core/pipeline/rate_limit_check/stage.py,sha256=9EVJ0zYtxATFsj7ADyWDYcSGBRqmrMiKWp1kkD9LONI,3962
117
155
  astrbot/core/pipeline/respond/stage.py,sha256=RIYGXTG-XvBhgRqaHyJYWlsZjskS9pgV-2jm5o956ho,11042
118
156
  astrbot/core/pipeline/result_decorate/stage.py,sha256=Ml7_E5P2YpGLHRc9aIBbL2gylLNsRuQqwxejEgPaIoo,17318
119
157
  astrbot/core/pipeline/session_status_check/stage.py,sha256=cFp6MMdFzeURjmW5LCrzsTGD_hnJN5jhDh_zoPbnFAw,1291
120
- astrbot/core/pipeline/waking_check/stage.py,sha256=u4s-UACcyFhydAbFKutvh1T4Aw6wdUyI_OU2hgCLiao,8650
158
+ astrbot/core/pipeline/waking_check/stage.py,sha256=3nmQHhQqrg6k1DvbiJoJkAt3Rp73aXlf6OtWK181WWc,8679
121
159
  astrbot/core/pipeline/whitelist_check/stage.py,sha256=x6o4oswIvVtHFRbuKuLFoyFEgx-gSo3IMGYvopu8d9A,2411
122
160
  astrbot/core/platform/__init__.py,sha256=5Hhb2mIb8mS2RWfxILIMuV03XiyfqEbn4pAjvi8ntl0,361
123
161
  astrbot/core/platform/astr_message_event.py,sha256=At8sT8cBrlPSZoozNsw9Bn31dpMjBXGxkwyZMERRtOQ,14746
@@ -178,26 +216,26 @@ astrbot/core/platform/sources/weixin_official_account/weixin_offacc_adapter.py,s
178
216
  astrbot/core/platform/sources/weixin_official_account/weixin_offacc_event.py,sha256=tGfu6DNsqRCrr8P83VVep3Sh035-esKHTXriDsIOdJA,7233
179
217
  astrbot/core/provider/__init__.py,sha256=0NVyKtTapnrUy0lkXVYWyM5KetwtDwXmTwBzqLG0MA4,142
180
218
  astrbot/core/provider/entites.py,sha256=0eYiQ-xttqFTb3WZR2b1oemdZy3d5sevELvj9FixJtE,388
181
- astrbot/core/provider/entities.py,sha256=TxlT1trG3hpD-uS023gmJfTn8jINvwmPYdfkwTJzg1M,13980
219
+ astrbot/core/provider/entities.py,sha256=oc6FCRdWcn3ijPZpVVSLwZmVtiY4dmWVbWehLG-BEtw,15107
182
220
  astrbot/core/provider/func_tool_manager.py,sha256=2pBKHAuj-6rITOipHmH8hrs8D4N2bAUx5TcJfUVYtsk,21241
183
221
  astrbot/core/provider/manager.py,sha256=ymmjvlOjhEEF6Jlmfg_Z8GSwYWeaj6EO0BzRJoGJ_Pg,29625
184
- astrbot/core/provider/provider.py,sha256=Jc8oXoj2-W1LP9nEung63IHGVN8LYsaCPb5Gc6jYfRE,11954
222
+ astrbot/core/provider/provider.py,sha256=Ixm7IfoIQ-Nlnc12VrzYDEqB630MUrAl2oXwFewO5Gc,12181
185
223
  astrbot/core/provider/register.py,sha256=0WMYrT9vbRjeq-72HD0oRT45kJmeKA96UgSItpTJbX8,1904
186
- astrbot/core/provider/sources/anthropic_source.py,sha256=3LoIq5BegBC7tlBbkLrhKAx2XVo4yjlVQH_fBI1mSJU,17246
224
+ astrbot/core/provider/sources/anthropic_source.py,sha256=Yy1YJiKFqOQjmCqjOBIhd4_flsIrqr9A5IEFEwj2P38,19361
187
225
  astrbot/core/provider/sources/azure_tts_source.py,sha256=m6zbwJGSddyTlhdD80CxWtWWUISmTSx8CboUbYCUKdM,10086
188
226
  astrbot/core/provider/sources/bailian_rerank_source.py,sha256=fsfVqzYMaZHrsPDdJlNRKSnYOYRNwmzl6OuSo-lkF2s,7587
189
227
  astrbot/core/provider/sources/dashscope_tts.py,sha256=-qBMwbIt_QSmWCT_uPAxrXSYuEbYJZ3WzjE_FhMhxgg,5629
190
228
  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
229
+ astrbot/core/provider/sources/fishaudio_tts_api_source.py,sha256=w3TUrNpJ9preNd4jeyCcjjjXZpaAo8TesSFIDxtLqyA,5917
192
230
  astrbot/core/provider/sources/gemini_embedding_source.py,sha256=bj4iXnMyONTyUBmBFeezPcBpjtfX_UBjMrbwMFyCis8,2607
193
- astrbot/core/provider/sources/gemini_source.py,sha256=o4vrlq6Pp7hcPJpVq4ppx1IOmG_1JPJNrwqt923QlMw,33916
231
+ astrbot/core/provider/sources/gemini_source.py,sha256=vHpamjjtTeQrh55GYUbue7fOte5WLZFls8WpQw4JCaY,35809
194
232
  astrbot/core/provider/sources/gemini_tts_source.py,sha256=6LJIT2aTjoZaMszjYRzDu38prsO9G5Xg7SzJmQb2TzE,2880
195
233
  astrbot/core/provider/sources/groq_source.py,sha256=NqmiQn37mrMsaTyGX25eNzMpIgkCifY-5TJO8DFzHaA,456
196
234
  astrbot/core/provider/sources/gsv_selfhosted_source.py,sha256=RYQgwCc67N7RWPaODN4sSLJZn6o5gpgk_jF_KaRnD0M,5942
197
235
  astrbot/core/provider/sources/gsvi_tts_source.py,sha256=nGGctfkzrAeTofAvB2b_VNTYHW44SzyO12B-mBWb1rY,2011
198
236
  astrbot/core/provider/sources/minimax_tts_api_source.py,sha256=oQoRYTU-_MrQqCkdtIF4AEa1HSgtQJgD3prk7Yp7b8Q,5925
199
237
  astrbot/core/provider/sources/openai_embedding_source.py,sha256=TMUU7J-uo3KrERr1ZKTjoNK9byEm-IU0UZK5YHM3WpM,1614
200
- astrbot/core/provider/sources/openai_source.py,sha256=8Pb7RMRfY8PGjyYiu1_kXhRyv-WHHRFsII2kyfWShxU,25055
238
+ astrbot/core/provider/sources/openai_source.py,sha256=fHH1J-WQjVdVKrRjXEUQfJSyMB3FxoVucm99bQMnIzU,26914
201
239
  astrbot/core/provider/sources/openai_tts_api_source.py,sha256=DVviGQdBpCk6lW3LjnJHzwZr9wGkXRDNwfoQ3FYFVcs,1667
202
240
  astrbot/core/provider/sources/sensevoice_selfhosted_source.py,sha256=99I6OfSUDJDgXCKK__QNk8EaCbX3TElGIbjBY6VJkWg,3900
203
241
  astrbot/core/provider/sources/vllm_rerank_source.py,sha256=-aXaIPRIgzzGDA7ev4Nuq4FTBM_qwMPgc5SpMtIWTKI,2355
@@ -209,14 +247,14 @@ astrbot/core/provider/sources/xinference_stt_provider.py,sha256=DPEc7cVo2KXKGIgb
209
247
  astrbot/core/provider/sources/zhipu_source.py,sha256=oOCPXGsR9PLWOuu3h8RSVNRw1Qy2Se6dwmeFR3zk3GM,612
210
248
  astrbot/core/star/README.md,sha256=LXxqxp3xv_oejO8ocBPOrbmLe0WB4feu43fYDNddHTQ,161
211
249
  astrbot/core/star/__init__.py,sha256=iTlnjfEGJGy--78PhG7F1cKj9VwJVcDNFtGomX8hRO0,2229
212
- astrbot/core/star/command_management.py,sha256=QJ-3jP9gA86iv-jBKAeuFkqYqJ3zkllHQXwjjKXmsao,16557
250
+ astrbot/core/star/command_management.py,sha256=V6LT_xNGCEQ6f6vMh0H8vSolsPx0bIPcFQnbN7QyGOY,18100
213
251
  astrbot/core/star/config.py,sha256=FgrBz_fUrBU0-9BxD8enX-xGNGVbFxst3UT10sboYNA,3531
214
- astrbot/core/star/context.py,sha256=zudyvlcVJb5zO7pAh_TGQOUQ3q8JSoKM1wldcciXypw,21234
252
+ astrbot/core/star/context.py,sha256=qkS4HlEK92mdEaaOHw76ZICSgxWXwUl4Ou9Oj_CqzC4,21239
215
253
  astrbot/core/star/session_llm_manager.py,sha256=W_ZgNDyUPjMQGccqnK83hFjZvSCv5BLQeyv5fHvRLUw,5307
216
254
  astrbot/core/star/session_plugin_manager.py,sha256=8sEzOxf_Gq-dwK_S-4rwocAFsYzx7Yi4FJuMRttPTac,2830
217
255
  astrbot/core/star/star.py,sha256=Wkf81teNZ27JE_JrENuP0SrpFc2uFYRxHQsWo8R9-No,1826
218
256
  astrbot/core/star/star_handler.py,sha256=x95UxHomijT6AamIlpij9Q2PweOw0jXPciFlS5IpPVI,7616
219
- astrbot/core/star/star_manager.py,sha256=GDN_aOJLLakQBN0wuEyD3hAtyNln_9UzX8JIryUupUA,41165
257
+ astrbot/core/star/star_manager.py,sha256=KBJpuhBEkw2XWxlKs4DDkeDYRFL09HgKdyDVvVl6iak,41208
220
258
  astrbot/core/star/star_tools.py,sha256=4q8emjyTbyIsVXHmzT88kX9uK28rIhlHc0re40Xm6m0,10847
221
259
  astrbot/core/star/updator.py,sha256=4pl42Ks_yjJ3kydx3BwOqocAczhhFBrRnxhBKh4_0Eo,3106
222
260
  astrbot/core/star/filter/__init__.py,sha256=bC6eHXh0CjzHmn-LTvsanWReoGIPhhMnBSrMLh97hZQ,470
@@ -230,7 +268,7 @@ astrbot/core/star/filter/regex.py,sha256=GHB5YvBMLFbOOiFVUnEHaqHTER7sU1pAVrAcXdw
230
268
  astrbot/core/star/register/__init__.py,sha256=Z2dbNKCsh5wzh9a6XFvb_x-9wO5SvowynJAd8kpWEJU,992
231
269
  astrbot/core/star/register/star.py,sha256=Eto7nD_HFuCNt-VJnXUXKv2D7a5TQ6qkhzLJ_itXo_8,1920
232
270
  astrbot/core/star/register/star_handler.py,sha256=SF_peEWGfAPxGvwvsliMdARsW7e3u86AhNBoSamC1JY,18097
233
- astrbot/core/utils/astrbot_path.py,sha256=tQFD55EFwGbpR1tpoJADpdElPS5iTFAZVLIxCVvKypY,1213
271
+ astrbot/core/utils/astrbot_path.py,sha256=RhuIbIH9sWJQxJYbVkxwD0xBK4lG-ZSQGKg35mLdTpk,2526
234
272
  astrbot/core/utils/command_parser.py,sha256=Cwd4zzyKEoC-er0a-9WZ5n2g4F8eH9p6BHxD96gjaVM,617
235
273
  astrbot/core/utils/file_extract.py,sha256=I9jgcaPYK74-BwuI18oUpoupnPYINeP3QFD3kFodqBA,697
236
274
  astrbot/core/utils/io.py,sha256=WUgM6V9_a-hi3CRKS9a-RFRAkZ5yu0M3WgpbR3-3tCw,10817
@@ -254,17 +292,18 @@ astrbot/core/utils/t2i/renderer.py,sha256=3IH-eLxOCIpEPHjXA1GF-ylGGyKz4GlMIbkjfv
254
292
  astrbot/core/utils/t2i/template_manager.py,sha256=Pfht7PZCdVteF93lja1LZQcUFNeCOKLs6EFx9XMeYKQ,4520
255
293
  astrbot/core/utils/t2i/template/astrbot_powershell.html,sha256=UcjetoIJG3pJRUHMDOor3Nhj7FFmVXXpkySkpXXztO4,4943
256
294
  astrbot/core/utils/t2i/template/base.html,sha256=fQvq4I4lrlH2s_jwAzj62lWeC4g87xXsYJMJ0XunCPA,6619
257
- astrbot/dashboard/server.py,sha256=HfmWHj4aqYcTT1re0vD4Fw6BHedg4bcfqpnWiisFWko,9748
295
+ astrbot/dashboard/server.py,sha256=qyFbbDfgpZI3g5CrrF2zxe8pRMe1nPqcO6BEtzQ0vCw,9944
258
296
  astrbot/dashboard/utils.py,sha256=KrAv0lnPaVR0bx8yevT1CLGbSNsJizlfkKkPEtVVANI,5355
259
- astrbot/dashboard/routes/__init__.py,sha256=57ZYHYQfNI-YAiA8K9m2tRJcHzMKcZ02Vu-A_eD0HUE,894
297
+ astrbot/dashboard/routes/__init__.py,sha256=mBpVLnU80EItRZ9ifWfplZs11riZaBli0UrQWcpilno,945
260
298
  astrbot/dashboard/routes/auth.py,sha256=rYkvt3MpCY9BhWjG0DUoX3YaBkJT1Id7M2pKqTmXbvo,2946
299
+ astrbot/dashboard/routes/backup.py,sha256=C1QLktm8zTSLk8_SNpXbNtobgNee2glU49sERPeBfIU,20013
261
300
  astrbot/dashboard/routes/chat.py,sha256=ntQrgrnOTIep_9Ycb1DCZjZBJPtlIJUO2YnTvC1GXFQ,27120
262
- astrbot/dashboard/routes/command.py,sha256=OLrDDUAE5zpxZMRJ3_IGe-6xFEpPwcXcd-EJ60e9OHI,2862
301
+ astrbot/dashboard/routes/command.py,sha256=DYwcqUF1ibFVQ4qMX3Nob7f0Kz5HmQE0iBWrVNF3Hk8,2917
263
302
  astrbot/dashboard/routes/config.py,sha256=4CsabE-ARxmLSGg30ZxlW-EvGHD-ppWHH03jml5-uQc,43326
264
303
  astrbot/dashboard/routes/conversation.py,sha256=TWGY7BJ9QfmbxurAieBrbMmCi4_Ua2klxsAUlSRXbng,14302
265
304
  astrbot/dashboard/routes/file.py,sha256=gULvXP9PnVOQlyv_PCEzZQE5ptnGQEjFPvwOLxdVgb4,708
266
305
  astrbot/dashboard/routes/knowledge_base.py,sha256=GZ_iDYV2uXXzvGMF-4VJ8hZxLdHIWSSfg_3wlWwsizA,46081
267
- astrbot/dashboard/routes/log.py,sha256=YJWj1982YUSzja_MZQS5UoKf6pImQoeP0zaS0AGp0nY,2299
306
+ astrbot/dashboard/routes/log.py,sha256=YyRG6rrxxCAdbJP4dJyywP1CH_GwXrKCBr5XU_eo230,3335
268
307
  astrbot/dashboard/routes/persona.py,sha256=MEcNHMxJmyvZ3ZhytI5IP7L3FSlMr1JDvdd5efN9Q-M,7833
269
308
  astrbot/dashboard/routes/platform.py,sha256=JfQzzmWSnahKjke3lBUeXo7Auzz_nTB0mUv0fIf_Nag,3392
270
309
  astrbot/dashboard/routes/plugin.py,sha256=CvTUNOaBBjgk7q58bJ4El7BxkUopzPEdqxFnE2LC2UY,25436
@@ -275,8 +314,8 @@ astrbot/dashboard/routes/static_file.py,sha256=7KnNcOb1BVqSTft114LhGsDkfg69X2jHE
275
314
  astrbot/dashboard/routes/t2i.py,sha256=F6smxdL99MF7cRw3hqS6-2GErw8Zhsv0V0mfBUeEk-c,8931
276
315
  astrbot/dashboard/routes/tools.py,sha256=mMwVFw_VOlpqy_WZg1A-ddGtYa5L5QLWYawl37PT0-c,15354
277
316
  astrbot/dashboard/routes/update.py,sha256=qXiqQ_dbqRVftOzGgCQrvK8-qopVK6zKhhVVJ9SK26U,6648
278
- astrbot-4.10.1.dist-info/METADATA,sha256=lBZaSiFV--2ampd45pQJ3_Cz5PRwJWkXQHJbmD9Xerc,11925
279
- astrbot-4.10.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
280
- astrbot-4.10.1.dist-info/entry_points.txt,sha256=OEF09YmhBWYuViXrvTLLpstF4ccmNwDL8r7nnFD0pfI,53
281
- astrbot-4.10.1.dist-info/licenses/LICENSE,sha256=zPfQj5Mq8-gThIiBcxETr7t8gND9bZWOjTGQAr80TQI,34500
282
- astrbot-4.10.1.dist-info/RECORD,,
317
+ astrbot-4.10.3.dist-info/METADATA,sha256=ez3v5Sg0XsCWt9sAduZpll5TiD5wrW3a1PPx4TKlcSE,11932
318
+ astrbot-4.10.3.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
319
+ astrbot-4.10.3.dist-info/entry_points.txt,sha256=OEF09YmhBWYuViXrvTLLpstF4ccmNwDL8r7nnFD0pfI,53
320
+ astrbot-4.10.3.dist-info/licenses/LICENSE,sha256=zPfQj5Mq8-gThIiBcxETr7t8gND9bZWOjTGQAr80TQI,34500
321
+ astrbot-4.10.3.dist-info/RECORD,,