AutoFix Bot
|
e46c938b40
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理
- 修复PEP8格式问题 (E302, E305, E501)
- 修复行长度超过100字符的问题
- 修复F821未定义名称错误
|
2026-03-01 18:19:06 +08:00 |
|
OpenClaw Bot
|
ea58b6fe43
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理
- 修复PEP8格式问题
- 添加类型注解
|
2026-03-01 00:08:06 +08:00 |
|
OpenClaw Bot
|
8492e7a0d3
|
fix: auto-fix code issues (cron)
- 修复缺失导入: main.py 添加 AttributeTemplate 和 EntityAttribute 导入
- 修复裸异常捕获: 将 BaseException 改为具体异常类型
- neo4j_manager.py: Exception
- main.py: json.JSONDecodeError, ValueError, Exception
- export_manager.py: AttributeError, TypeError, ValueError
- localization_manager.py: ValueError, AttributeError
- performance_manager.py: TypeError, ValueError
- plugin_manager.py: OSError, IOError
- 修复部分行长度问题: security_manager.py 长行拆分
|
2026-02-28 21:14:59 +08:00 |
|
OpenClaw Bot
|
1a9b5391f7
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理
- 修复PEP8格式问题
- 添加类型注解
|
2026-02-28 09:15:51 +08:00 |
|
OpenClaw Bot
|
74c2daa5ef
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理
- 修复PEP8格式问题
- 添加类型注解
|
2026-02-28 09:11:38 +08:00 |
|
OpenClaw Bot
|
fe3d64a1d2
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理
- 修复PEP8格式问题
- 添加类型注解
- 修复缺失的urllib.parse导入
|
2026-02-28 06:03:09 +08:00 |
|
OpenClaw Bot
|
33555642db
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理
- 修复PEP8格式问题
- 添加类型注解
|
2026-02-28 03:03:50 +08:00 |
|
OpenClaw Bot
|
d767f0dddc
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理
- 修复PEP8格式问题
- 添加类型注解
|
2026-02-27 21:12:04 +08:00 |
|
OpenClaw Bot
|
17bda3dbce
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理
- 修复PEP8格式问题
- 添加类型注解
|
2026-02-27 18:09:24 +08:00 |
|
OpenClaw Bot
|
96f08b8bb9
|
fix: auto-fix code issues (cron)
- 修复裸异常捕获 (E722) - 改为具体异常类型
- 修复重复导入/字段定义问题
- 修复PEP8格式问题 (W291 trailing whitespace, E226, E741)
- 修复未使用变量 (F841)
- 修复变量名遮蔽 (F402)
- 修复未定义名称 (F821) - 添加 urllib.parse 导入
- 修复 f-string 缺少占位符 (F541)
- 修复模块级导入位置 (E402)
- 修复行尾空白和空行问题
- 优化代码结构,提升可读性
|
2026-02-27 12:10:56 +08:00 |
|
OpenClaw Bot
|
be22b763fa
|
fix: auto-fix code issues (cron)
- 修复重复导入/字段
- 修复异常处理
- 修复PEP8格式问题
- 添加类型注解
- 修复重复函数定义 (health_check, create_webhook_endpoint, etc)
- 修复未定义名称 (SearchOperator, TenantTier, Query, Body, logger)
- 修复 workflow_manager.py 的类定义重复问题
- 添加缺失的导入
|
2026-02-27 09:18:58 +08:00 |
|
OpenClaw Bot
|
e4550b066e
|
Phase 7 Task 6 & 8: 高级搜索与发现 + 性能优化与扩展
- 新增 search_manager.py 搜索管理模块
- FullTextSearch: 全文搜索引擎 (FTS5)
- SemanticSearch: 语义搜索引擎 (sentence-transformers)
- EntityPathDiscovery: 实体关系路径发现 (BFS/DFS)
- KnowledgeGapDetector: 知识缺口检测器
- 新增 performance_manager.py 性能管理模块
- CacheManager: Redis 缓存层 (支持内存回退)
- DatabaseSharding: 数据库分片管理
- TaskQueue: 异步任务队列 (Celery + Redis)
- PerformanceMonitor: 性能监控器
- 更新 schema.sql 添加新表
- search_indexes, embeddings, fts_transcripts
- cache_stats, task_queue, performance_metrics, shard_mappings
- 更新 main.py 添加 API 端点
- 搜索: /search/fulltext, /search/semantic, /entities/{id}/paths
- 性能: /cache/stats, /performance/metrics, /tasks, /health
- 更新 requirements.txt 添加依赖
- sentence-transformers==2.5.1
- redis==5.0.1
- celery==5.3.6
- 创建测试脚本和文档
- test_phase7_task6_8.py
- docs/PHASE7_TASK6_8_SUMMARY.md
Phase 7 全部完成!
|
2026-02-24 18:15:35 +08:00 |
|