alan.cl
597b1e63b8
fix(connector): 修复 CI 风格检测与陈旧单测
...
CI build-web 失败 + make fmt-check 报错的修复,均不影响功能逻辑:
- side-bar.tsx: 修复两处超长 className 键值对的 prettier 换行(CI 构建失败根因)
- agentic_data_api.py: BaseTool 加入 TYPE_CHECKING(F821);循环变量 tool->sub_tool 避免遮蔽 import(F402)
- catalog.py/task_executor.py/models.py: 超长字符串隐式拼接换行(E501),拼接结果不变
- manager.py: 精简过长的 docstring 与模块注释(E501)
- test_manager.py: 同步 4 个陈旧测试断言以匹配当前 connector 鉴权模型
(所有类型强制 server_uri、headers 由 auth_type+token 派生、tool 摘要含 original_name)
- test_service.py: 精简过长的测试 docstring(E501)
验证: make fmt-check 全绿;connector 测试 53 passed
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com >
2026-06-04 21:35:49 +08:00
alan.cl
e2fee36b13
feat(scheduled-task): add cron-based chat replay scheduled tasks
...
后端:新增独立 scheduled_task serve 模块(API/DAO/models/service/
chat_replay_runner)与 util/scheduler 单例调度器,并在 serve_initialization
注册 ScheduledTaskServe;将原 connector 下的 scheduled_task 旧实现迁移至此。
前端:新增定时任务列表/详情页、保存与编辑抽屉、CronInput、执行历史表
及 use-scheduled-task hook 与类型定义。
修复:主页保存定时任务时,buildSnapshot 改为复用发送瞬间的真实 payload,
使快照忠实携带 file_path / database_name / knowledge_space 等执行上下文;
详情页"任务环境"展示数据库 / 文件 / 知识库,并优先显示技能名。
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com >
2026-06-02 21:22:30 +08:00
alan.cl
9041733342
fix(connector): wire frontend through ctx-axios + add sidebar entry + normalize field names
...
Pre-existing integration gaps surfaced when running the dev server:
1. use-connector-api.ts used bare fetch() instead of ctx-axios, so all
/api/v2/serve/connectors/* requests hit the Next.js dev server (3000)
instead of the backend (5670) and returned the Next 404 HTML page.
Migrate every helper to axios via @/utils/ctx-axios.
2. useConfirmPolling.ts had the same bare-fetch problem; HITL confirm
polling and resolve calls would never reach the backend.
3. Backend ConnectorResponse exposes connector_id while the frontend
ConnectorInstance type uses id, leaving every c.id undefined. Add a
normalizeConnector boundary in use-connector-api.ts so the rest of
the frontend can keep using id.
4. /construct/connectors had no entry in the side-bar settings menu —
users had to type the URL by hand. Add an "ApiOutlined / 连接器管理"
item next to prompts in the management group.
5. Add the new `connectors` translation key to zh/en common.ts so the
sidebar label resolves and TS strict-key check passes.
2026-05-27 10:51:32 +08:00
Aries-ckt
ef83851b31
🎉 DB-GPT V0.8.0 - Beta Testing ( #2988 )
...
Co-authored-by: lusain <lusain1990@gmail.com >
Co-authored-by: alan.cl <1165243776@qq.com >
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai >
2026-03-16 11:55:42 +08:00
alan.cl
6747efbd9b
feat(benchmark): support benchmark task execute diff environment evaluation datasets
2025-12-24 18:02:57 +08:00
alan.cl
50441cc0c2
feat(benchmark): support agent execute benchmark dataset
2025-12-05 19:53:36 +08:00
alanchen
368f42227e
feat(benchmark): Support Falcon Text2SQL Datasets LLM benchmark ( #2918 )
...
Co-authored-by: yaoyifan-yyf <yaoyifan.yyf@antgroup.com >
Co-authored-by: alan.cl <alan.cl@antgroup.com >
Co-authored-by: iterminatorheart <123625928+iterminatorheart@users.noreply.github.com >
Co-authored-by: VLADIMIR KOBZEV <vladimir.kobzev@improvado.io >
Co-authored-by: Aries-ckt <916701291@qq.com >
Co-authored-by: xiandu.wl <xiandu.wl@antgroup.com >
2025-10-23 14:26:36 +08:00
alanchen
26bb07f9d1
fix(web): escape document separator ( #2870 )
2025-08-01 17:47:29 +08:00
alanchen
bcb4eb3983
feat(RAG): support knowledgeSpace custom retrieve strategy ( #2842 )
2025-07-21 12:08:39 +08:00
Fangyin Cheng
06de6ea08d
fix(core): Fix newline escape issue ( #2854 )
2025-07-16 19:49:34 +08:00
Eric Wang
3917f8c353
fix(web): resolve overlapping floating buttons in web ( #2836 )
2025-07-13 16:59:50 +08:00
Eric Wang
3f60470388
fix(web): Fix auto-scroll issue in chat ( #2797 )
2025-07-09 19:08:09 +08:00
Eric Wang
e797808efd
fix(web): prompt selection and prompt_code delivery for chat_dashboard ( #2790 )
2025-06-25 22:07:25 +08:00
Eric Wong
e04b0f9c19
feat(web): Enhance dashboard visualization and table-chart formatting ( #2731 )
2025-05-28 17:36:21 +08:00
WangzJi
637df4ef56
feat(web): ChartDashboard pie chart interaction and display #2708
2025-05-21 00:21:33 +08:00
cumbersun
105a5ada49
fix: issue 2685 ( #2686 )
...
Co-authored-by: cumbermiao <cumbermiao@163.com >
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2025-05-15 15:53:12 +08:00
yyhhyy
9fce5cec3d
fix(web): Prevent dragging node when selecting text in parameter input fields ( #2560 )
2025-03-31 19:55:16 +08:00
Fangyin Cheng
99ce1ed992
feat(web): Support html/svg preview ( #2518 )
2025-03-25 11:41:18 +08:00
明天
73052eda75
feat(agent): Supports MCP ( #2497 )
...
Co-authored-by: Fangyin Cheng <staneyffer@gmail.com >
2025-03-21 12:00:21 +08:00
Fangyin Cheng
8eba2a3b2e
feat(web): Support math Latex
2025-03-17 15:38:31 +08:00
Fangyin Cheng
8ccd4090b9
feat(awel): Support simple templates
2025-03-14 10:44:50 +08:00
Fangyin Cheng
93eb3a786c
feat(ChatExcel): Better Chat Excel ( #2423 )
2025-03-10 11:37:32 +08:00
Fangyin Cheng
4e993a2be8
feat(model): API support reasoning ( #2409 )
2025-03-07 15:31:12 +08:00
Fangyin Cheng
bfd7fe8888
feat(datasource): Support reasoning for ChatDashboard ( #2401 )
2025-03-06 15:16:08 +08:00
Fangyin Cheng
82bdc6fe94
feat(model): Support reasoning model ( #2375 )
...
Co-authored-by: yyhhyyyyyy <95077259+yyhhyyyyyy@users.noreply.github.com >
2025-02-28 14:32:47 +08:00
云锋
94b51284e0
feat(datasource): Database connection Renewal ( #2359 )
...
Co-authored-by: aries_ckt <916701291@qq.com >
Co-authored-by: Fangyin Cheng <staneyffer@gmail.com >
Co-authored-by: ‘yanzhiyonggit config --global user.email git config --global user.name ‘yanzhiyong <zhiyong.yan@clife.cn >
2025-02-22 18:44:21 +08:00
Fangyin Cheng
e4b329ee21
refactor(v0.7.0): restructure modules and config handling ( #2358 )
...
Co-authored-by: aries_ckt <916701291@qq.com >
2025-02-21 19:54:53 +08:00
Aries-ckt
f0d89eaf0d
fix: awel template css error ( #2220 )
...
Co-authored-by: wb-lh513319 <wb-lh513319@alibaba-inc.com >
2024-12-20 10:48:54 +08:00
Fangyin Cheng
7f4b5e79cf
feat(core): Support max output tokens parameter ( #2218 )
2024-12-18 17:19:18 +08:00
lhwan
cf192a5fb7
Fix chunk strategy ( #2075 )
2024-10-18 13:52:45 +08:00
Dreammy23
66d32461dc
fix: Fix export flow error ( #1994 )
...
Co-authored-by: 谨欣 <echo.cmy@antgroup.com >
Co-authored-by: Fangyin Cheng <staneyffer@gmail.com >
2024-09-10 16:14:30 +08:00
Dreammy23
746e4fda37
feat(web): Add DAG variables to web flow ( #1981 )
...
Co-authored-by: Fangyin Cheng <staneyffer@gmail.com >
Co-authored-by: 谨欣 <echo.cmy@antgroup.com >
Co-authored-by: yanzhiyong <932374019@qq.com >
Co-authored-by: 严志勇 <yanzhiyong@tiansuixiansheng.com >
2024-09-10 09:39:40 +08:00
hustcc
378955b23f
fix: rename vis-chart to vis-db-chart ( #1946 )
2024-09-03 16:02:25 +08:00
Aries-ckt
ecc3cb5525
feat(web):Add GraphRAG web statics ( #1943 )
2024-09-03 10:28:59 +08:00
M1n9X
759f7d99cc
✨ feat(GraphRAG): enhance GraphRAG by graph community summary ( #1801 )
...
Co-authored-by: Florian <fanzhidongyzby@163.com >
Co-authored-by: KingSkyLi <15566300566@163.com >
Co-authored-by: aries_ckt <916701291@qq.com >
Co-authored-by: Fangyin Cheng <staneyffer@gmail.com >
Co-authored-by: yvonneyx <zhuyuxin0627@gmail.com >
2024-08-30 21:59:44 +08:00
Dreammy23
471689ba20
feat(web): Unified frontend code style ( #1923 )
...
Co-authored-by: Fangyin Cheng <staneyffer@gmail.com >
Co-authored-by: 谨欣 <echo.cmy@antgroup.com >
Co-authored-by: 严志勇 <yanzhiyong@tiansuixiansheng.com >
Co-authored-by: yanzhiyong <932374019@qq.com >
2024-08-30 14:03:06 +08:00
明天
f866580703
feat: dbgpts modules bug fix ( #1921 )
...
Co-authored-by: 途杨 <tuyang.yhj@antgroup.com >
Co-authored-by: lhwan <1017484907@qq.com >
Co-authored-by: hustcc <i@hust.cc >
2024-08-30 10:03:58 +08:00
hec
549f256524
fix(ChatData): Fix execution failure error after manually updating SQL ( #1812 )
...
Co-authored-by: hec <he.erchuang@fujitsu.com >
2024-08-28 23:27:09 +08:00
明天
d7a893e1a7
feat: new dbgpts modules ( #1910 )
...
Co-authored-by: 途杨 <tuyang.yhj@antgroup.com >
Co-authored-by: lhwan <1017484907@qq.com >
2024-08-28 21:31:42 +08:00
hustcc
1cb7e35295
refactor: upgrade gpt-vis ( #1883 )
2024-08-28 13:37:45 +08:00
Dreammy23
131bc7b89b
feat(web): AWEL flow 2.0 frontend codes ( #1898 )
...
Co-authored-by: Fangyin Cheng <staneyffer@gmail.com >
Co-authored-by: 谨欣 <echo.cmy@antgroup.com >
Co-authored-by: 严志勇 <yanzhiyong@tiansuixiansheng.com >
Co-authored-by: yanzhiyong <932374019@qq.com >
2024-08-28 12:39:13 +08:00
lhwan
3a32344380
feat: web update ( #1860 )
...
Co-authored-by: 夏姜 <wenfengjiang.jwf@digital-engine.com >
Co-authored-by: yhjun1026 <460342015@qq.com >
Co-authored-by: aries_ckt <916701291@qq.com >
Co-authored-by: wb-lh513319 <wb-lh513319@alibaba-inc.com >
2024-08-22 11:05:18 +08:00
Aries-ckt
167d972093
feat(ChatKnowledge): Support Financial Report Analysis ( #1702 )
...
Co-authored-by: hzh97 <2976151305@qq.com >
Co-authored-by: Fangyin Cheng <staneyffer@gmail.com >
Co-authored-by: licunxing <864255598@qq.com >
2024-07-26 13:40:54 +08:00
chenluli
083becde08
fix(web): fix line chart using interval field as xAxis & fix pie chart tooltip ( #1697 )
2024-07-17 16:40:42 +08:00
shyusi
91967ae622
bugfix:fix table scroll bug ( #1725 )
...
Co-authored-by: sishangyu <sishangyu.ssy@alibaba-inc.com >
2024-07-16 17:39:47 +08:00
chenluli
c57ee0289b
feat(web): add download image function&fix null data point ( #1653 )
2024-06-21 17:02:49 +08:00
chenluli
49b56b4576
fix(web): sort line chart data according to time order ( #1639 )
2024-06-17 21:33:54 +08:00
chenluli
28c67efbea
fix(web): fix inconsistency between model recommendation charts and display charts ( #1615 )
...
Co-authored-by: hzh97 <2976151305@qq.com >
Co-authored-by: aries_ckt <916701291@qq.com >
2024-06-13 19:33:36 +08:00
Aries-ckt
58d08780d6
feat(ChatKnowledge): ChatKnowledge Support Keyword Retrieve ( #1624 )
...
Co-authored-by: Fangyin Cheng <staneyffer@gmail.com >
2024-06-13 13:49:17 +08:00
Aries-ckt
8533b3d390
fix:cannot connect other vector store ( #1579 )
2024-05-30 09:51:15 +08:00