wumode
9d182e53b2
fix: type hints
2025-11-05 15:41:31 +08:00
wumode
ff2826a448
feat(utils): Refactor check_method to use ast
...
- 使用 AST 解析函数源码,相比基于字符串的方法更稳定,能够正确处理具有多行 def 语句的函数
- 为 check_method 添加了单元测试
2025-11-05 14:16:37 +08:00
jxxghp
8e7d040ac4
Merge pull request #5091 from wikrin/cached
2025-11-03 09:51:37 +08:00
Attente
6755202958
feat(cache): 使用 fresh 和 async_fresh 统一缓存控制方式
...
- 修复因缓存导致的插件更新后仍有更新提示的问题
- 统一使用 fresh/async_fresh 控制缓存行为
- 调整 TMDb 模块缓存策略,优化异步请求缓存清除机制
- 移除冗余的缓存方法封装,减少调用层级
- 简化 PluginHelper 中的缓存方法结构,移除 force 参数
2025-11-03 07:41:42 +08:00
jxxghp
8b7374a687
Merge pull request #5090 from wikrin/fix
2025-11-02 07:35:00 +08:00
Attente
c17cca2365
fix(update_setting): 修复设置保存错误的问题
...
- adapt to Pydantic V2
2025-11-01 23:51:59 +08:00
jxxghp
8016a9539a
fix agent
2025-11-01 19:08:05 +08:00
jxxghp
e885fb15a0
Merge pull request #5089 from wikrin/fix
2025-11-01 18:27:35 +08:00
Attente
c7f098771b
feat: adapt to Pydantic V2
2025-11-01 17:56:37 +08:00
Attente
fcd0908032
fix(transfer): 修复指定part不生效的问题
2025-11-01 17:56:23 +08:00
jxxghp
7ff1285084
fix agent tools
2025-11-01 12:07:17 +08:00
jxxghp
b45b603b97
fix agent tools
2025-11-01 12:01:48 +08:00
jxxghp
247208b8a9
fix agent
2025-11-01 11:41:22 +08:00
jxxghp
182c46037b
fix agent
2025-11-01 10:40:45 +08:00
jxxghp
438d3210bc
fix agent
2025-11-01 10:39:08 +08:00
jxxghp
d523c7c916
fix pydantic
2025-11-01 09:51:23 +08:00
jxxghp
09a19e94d5
fix config
2025-11-01 09:23:52 +08:00
jxxghp
3971c145df
refactor: streamline data serialization in tool implementations
...
- Replaced model_dump and to_dict methods with direct calls to dict for improved consistency and performance in JSON serialization across multiple tools.
- Updated ConversationMemoryManager, GetRecommendationsTool, QueryDownloadsTool, and QueryMediaLibraryTool to enhance data handling.
2025-10-31 11:36:50 +08:00
jxxghp
055117d83d
refactor: enhance tool message handling and improve error logging
...
- Updated _send_tool_message to accept a title parameter for better message context.
- Modified various tool implementations to utilize the new title parameter for clearer messaging.
- Improved error logging across multiple tools to include exception details for better debugging.
2025-10-31 09:16:53 +08:00
jxxghp
c6baf43986
Merge pull request #5085 from wumode/fix-event-handler-params
2025-10-29 07:50:47 +08:00
wumode
4ff16af3a7
fix: __invoke_plugin_method_async 中 __handle_event_error 参数传递错误
2025-10-28 20:09:44 +08:00
jxxghp
17a1bd352b
Merge pull request #5071 from wikrin/optimize-file-size
2025-10-23 22:54:43 +08:00
Attente
7421ca09cc
fix(transfer): 修复部分情况下无法正确统计已完成任务总大小的问题
...
- get_directory_size 使用 os.scandir 递归遍历提升性能
- 当任务文件项存储类型为 local 时,若其大小为空,则通过 SystemUtils 获取目录大小以确保
完成任务的准确统计。
fix(cache): 修改 fresh 和 async_fresh 默认参数为 True
refactor(filemanager): 移除整理后总大小计算逻辑
- 删除 TransHandler 中对整理目录总大小的冗余计算,提升性能并简化流程。
perf(system): 使用 scandir 优化文件扫描性能
- 重构 SystemUtils 中的文件扫描方法(list_files、exists_file、list_sub_files),
- 采用 os.scandir 替代 glob 实现,并预编译正则表达式以提升目录遍历与文件匹配性能。
2025-10-23 19:21:24 +08:00
jxxghp
9797e696e5
Merge pull request #5073 from WAY29/v2
2025-10-23 13:05:10 +08:00
jxxghp
c36d6d8b2d
Merge pull request #5072 from wumode/fix_retry
2025-10-23 06:52:29 +08:00
wumode
3873786b99
fix: retry
2025-10-23 00:58:34 +08:00
WAY29
76fdba7f09
feat(endpoints): /download/add allow tmdbid/doubanid/bangumiid
2025-10-22 22:02:33 +08:00
jxxghp
72799e9638
Merge pull request #5068 from little6neko/v2
2025-10-22 06:18:28 +08:00
小六妞儿
2e77d03fe9
目录监控添加异常处理避免程序意外退出
2025-10-22 00:21:31 +08:00
jxxghp
0c58eae5e7
Merge pull request #5060 from wikrin/cached
2025-10-19 22:37:33 +08:00
Attente
b609567c38
feat(cache): 引入 fresh 和 async_fresh 以控制缓存行为
...
- 新增 `fresh` 和 `async_fresh` 用于在同步和异步函数中
临时禁用缓存。
- 通过 `_fresh` 这一 contextvars 变量实现上下文感知的
缓存刷新机制
- 修改了 `cached` 装饰器逻辑,在 `is_fresh()` 为 True
时跳过缓存读取。
- 修复 download 模块中路径处理问题,使用 `Path.as_posix()` 确保跨平台兼容性。
2025-10-19 22:31:50 +08:00
jxxghp
7ecfa44fa0
Merge pull request #5057 from xiaoQQya/v2
2025-10-19 06:49:23 +08:00
xiaoQQya
a685b1dc3b
fix(douban): 修复 imdbid 匹配豆瓣信息成功错误返回 None 的问题
2025-10-18 22:34:55 +08:00
jxxghp
63ce49a17c
Merge pull request #5056 from xiaoQQya/v2
2025-10-18 22:16:03 +08:00
xiaoQQya
820fbe4076
fix(douban): 修复使用 imdbid 未匹配到豆瓣信息时回退到使用名称匹配豆瓣信息失败的问题
2025-10-18 22:07:54 +08:00
jxxghp
efa05b7775
Update media tool descriptions for clarity and detail in JSON configuration
2025-10-18 22:00:24 +08:00
jxxghp
003781e903
add MoviePilot AI agent implementation and workflow manager
2025-10-18 21:55:31 +08:00
jxxghp
ee71bafc96
fix
2025-10-18 21:32:46 +08:00
jxxghp
bdd5f1231e
add ai agent
2025-10-18 21:26:51 +08:00
jxxghp
6fee532c96
add ai agent
2025-10-18 21:26:36 +08:00
jxxghp
78aaad7b59
Merge pull request #5028 from ThedoRap/v2
2025-10-07 23:00:21 +08:00
Reaper
b128b0ede2
修复知行 极速之星 框架解析 做种信息
2025-10-02 20:43:06 +08:00
Reaper
737d2f3bc6
优化知行 极速之星 框架解析
2025-10-02 20:03:28 +08:00
jxxghp
179be53a65
Merge pull request #5025 from ThedoRap/v2
2025-10-02 06:50:37 +08:00
Reaper
1867f5e7c2
增加知行 极速之星 框架解析
2025-10-02 04:27:35 +08:00
jxxghp
6662d24565
Merge pull request #5019 from xiaoQQya/develop
2025-10-01 11:53:24 +08:00
jxxghp
5880566a99
Merge pull request #5018 from Aqr-K/fix-plugin
2025-10-01 11:52:43 +08:00
xiaoQQya
5d05b32711
fix: 修复 README 本地运行提示 No module named 'app' 的问题
2025-09-30 23:45:25 +08:00
Aqr-K
fa2b720e92
Refactor(plugins): Use pathlib.relative_to for robust plugin path resolution
2025-09-30 20:03:08 +08:00
jxxghp
d381238f83
Merge pull request #5017 from Aqr-K/fix-plugin
2025-09-30 19:55:46 +08:00