agent-Specialization/server
JOJO 9fff41650d feat(chat): 输入栏附件系统增强——粘贴图片、文件附加、图片灯箱与文件预览联动
- 输入框支持直接粘贴图片(Tiptap handlePaste,复用拖拽三路分发)
- 文件附加:拖拽/粘贴/选择的普通文件以文件块(FileChips)附加到输入栏,
  随消息发送;后端在主消息 metadata.files 记录并插入 hidden file_paths
  通知消息告知模型文件位置;运行中队列/自动续发/引导全链路携带 files
- 文件块视觉:196x60 与图片同排同高同圆角,类型彩色图标(文档/表格/
  演示/PDF/文本/代码/压缩包),深色提亮变体,SVG 删除按钮与图片统一
- 图片大图预览灯箱(ImageLightbox):最大 1100x780 不铺满全屏,移动端适配
- 文件块点击 → 快捷窗口文件预览面板(复用 /api/file/content)
- 预览面板:hover 灰行在横向滚动下贯穿整行(qd-code 宽度锚定内容全宽);
  新增设置项「预览窗口自动换行显示」(默认关闭,换行模式逐行渲染 +
  行级 content-visibility 屏外跳过渲染优化)
- SVG 从图片链路剔除(isImageFile 排除 + 图片选择器白名单),按普通文件处理
2026-08-11 17:16:56 +08:00
..
chat feat(ask-user): 弹窗新增「不回答」选项 2026-08-07 14:31:05 +08:00
status fix(windows): 平台适配与稳定性修复(进程终止/编码/原子写/事件竞态/子智能体) 2026-07-31 11:33:57 +08:00
tasks feat(chat): 输入栏附件系统增强——粘贴图片、文件附加、图片灯箱与文件预览联动 2026-08-11 17:16:56 +08:00
__init__.py refactor(cleanup): 移除余额查询功能、清理前端调试日志、规整终端输出 2026-07-25 12:07:04 +08:00
admin.py feat(admin): 二级密码未配置时显示设置引导页,登录 Docker 报错改为原地弹窗 2026-07-25 16:52:42 +08:00
api_auth.py feat: add api admin ui and container status fix 2026-01-25 10:49:52 +08:00
api_v1.py fix(windows): 平台适配与稳定性修复(进程终止/编码/原子写/事件竞态/子智能体) 2026-07-31 11:33:57 +08:00
app_legacy.py refactor(naming): 移除代码中的第三方产品名 2026-07-28 18:43:03 +08:00
app.py refactor: split web_server into modular architecture 2026-01-22 09:21:53 +08:00
auth_helpers.py fix: persist onboarding prompt status and bump android app to 1.0.20 2026-04-07 20:08:33 +08:00
auth.py fix(host): 启动时不再自动创建默认工作区,改为等待用户手动创建 2026-07-29 23:21:06 +08:00
chat_flow_helpers.py refactor(naming): 移除代码中的第三方产品名 2026-07-28 18:43:03 +08:00
chat_flow_runner_helpers.py fix(frontend): 修复多个前端交互问题 2026-07-15 00:31:13 +08:00
chat_flow_runner.py feat: 移除实验性间隔思考模式,推理强度前置到前端 2026-07-21 13:47:53 +08:00
chat_flow_runtime.py feat: 移除实验性间隔思考模式,推理强度前置到前端 2026-07-21 13:47:53 +08:00
chat_flow_stream_loop.py fix(server): 停止标志改为任务级隔离,修复并行对话互相停止 2026-08-08 23:59:23 +08:00
chat_flow_task_main.py feat(chat): 输入栏附件系统增强——粘贴图片、文件附加、图片灯箱与文件预览联动 2026-08-11 17:16:56 +08:00
chat_flow_task_runner.py refactor: isolate chat task main pipeline module 2026-03-07 20:32:02 +08:00
chat_flow_task_support.py feat(chat): 输入栏附件系统增强——粘贴图片、文件附加、图片灯箱与文件预览联动 2026-08-11 17:16:56 +08:00
chat_flow_tool_loop.py feat(chat): 输入栏附件系统增强——粘贴图片、文件附加、图片灯箱与文件预览联动 2026-08-11 17:16:56 +08:00
chat_flow.py feat(chat): 输入栏附件系统增强——粘贴图片、文件附加、图片灯箱与文件预览联动 2026-08-11 17:16:56 +08:00
context.py fix(host): 修复零工作区新部署的前端死锁 2026-07-30 15:21:02 +08:00
conversation_bootstrap.py feat(quickdock): 新增对话区右侧快捷窗口(待办/子智能体/后台指令/文件记录) 2026-07-22 00:52:36 +08:00
conversation_stats.py refactor(cleanup): 移除余额查询功能、清理前端调试日志、规整终端输出 2026-07-25 12:07:04 +08:00
conversation.py perf(host): 新建对话延迟从10s降至3s并消除后台日志刷屏 2026-07-30 17:42:12 +08:00
deep_compression.py feat(compression): 深度压缩提示词支持轮次/最新输入占位与运行时状态注入 2026-07-26 00:55:24 +08:00
extensions.py refactor: split web_server into modular architecture 2026-01-22 09:21:53 +08:00
files.py feat(input): support file mentions 2026-07-04 22:58:58 +08:00
goal_flow.py fix(ui): refine message visibility and goal approval flow 2026-05-30 16:30:05 +08:00
monitor.py refactor: split web_server into modular architecture 2026-01-22 09:21:53 +08:00
multi_agent.py feat(sub-agent): 子智能体最大轮次支持个人空间自定义 2026-07-31 22:40:20 +08:00
security.py feat: add api v1 bearer auth and polling docs 2026-01-24 02:35:07 +08:00
socket_handlers.py refactor(cleanup): 移除余额查询功能、清理前端调试日志、规整终端输出 2026-07-25 12:07:04 +08:00
state.py fix(server): 停止标志改为任务级隔离,修复并行对话互相停止 2026-08-08 23:59:23 +08:00
usage.py refactor: split web_server into modular architecture 2026-01-22 09:21:53 +08:00
utils_common.py refactor(runtime): 运行态数据迁出源码树到 ~/.agents,日志默认关并加轮转,清理实验残留 2026-06-01 13:17:32 +08:00
work_timer.py fix: 修复对话计时器持久化、子智能体工具美化与状态查询,统一后台通知池 2026-06-25 04:16:44 +08:00