Yongtao Huang
146d870098
Fix: avoid Flask route conflict by merging `DocumentDetailApi` and `DocumentDeleteApi` (#23333)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
3 meses atrás
Yongtao Huang
964fa132cb
Chore: fix typo, no code change (#23331)
3 meses atrás
Warren Wong
6d5a7684b4
feat: Add Download Button to UI for Knowledge Resource Source Files (#23320)
3 meses atrás
Asuka Minato
58608f51da
replace db with sa to get typing support (#23240)
3 meses atrás
NeatGuyCoding
07cff1ed2c
minor fix: fix flask api resources only accept one resource for same url (#23168)
3 meses atrás
NeatGuyCoding
070379a900
minor fix: fix wrong check of annotation_ids (#23164)
3 meses atrás
GuanMu
4499cda186
Feat annotations panel (#22968)
3 meses atrás
lyzno1
0ea010d7ee
fix: metadata API nullable validation consistency issue (#23133)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
3 meses atrás
Yongtao Huang
57e0a12ccd
Refactor: remove redundant full module paths in exception handlers (#23076)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
3 meses atrás
NeatGuyCoding
537c04745d
minor fix: using the same AccountInFreezeError (#23061)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
3 meses atrás
zyssyz123
de28bb1075
fix: changed email login use oauth will create an new account (#23057)
3 meses atrás
zhaobingshuang
5c5f61b2aa
fix(dataset): CELERY_BROKER uses amqp rabbitmq. When adding document segments in batches and uploading large files, the status will always remain stuck at "In batch processing" #22709 (#23038)
3 meses atrás
呆萌闷油瓶
ee50a2bcd5
feat: clear all annotation (#22878)
Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
3 meses atrás
Asuka Minato
a189d293f8
make logging not use f-str, change others to f-str (#22882)
3 meses atrás
quicksand
8340d775bd
Improve: support custom model parameters in auto-generator (#22924)
3 meses atrás
KVOJJJin
d6b980a2dd
Feat: change user email freezes limit (#22912)
Co-authored-by: Yansong Zhang <916125788@qq.com>
3 meses atrás
zyssyz123
6ac06486e3
Feat/change user email freezes limit (#22900)
3 meses atrás
KVOJJJin
de611ab344
Feat: add notification for change email completed (#22812)
Co-authored-by: Yansong Zhang <916125788@qq.com>
3 meses atrás
Asuka Minato
ef51678c73
orm filter -> where (#22801)
Signed-off-by: -LAN- <laipz8200@outlook.com>
Co-authored-by: -LAN- <laipz8200@outlook.com>
Co-authored-by: Claude <noreply@anthropic.com>
3 meses atrás
Junyan Qin (Chin)
eaae79a581
feat: plugin auto upgrade strategy (#19758)
Co-authored-by: Joel <iamjoel007@gmail.com>
Co-authored-by: crazywoola <427733928@qq.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Novice <novice12185727@gmail.com>
3 meses atrás
Maries
ad67094e54
feat: oauth refresh token (#22744)
Co-authored-by: Yeuoly <admin@srmxy.cn>
3 meses atrás
Bowen Liang
74940ad3f2
chore: code improvement for mcp_client and mcp_tools_manage_service (#22645)
3 meses atrás
Aryan Raj
ce794335e9
Fix/replace datetime patterns with naive utc now (#22654)
3 meses atrás
jiangbo721
ffee6f3288
fix: admin feedback uses the same method create_feedback (#22580)
Co-authored-by: 刘江波 <jiangbo721@163.com>
3 meses atrás
-LAN-
1715dd4320
refactor: Fix some type error (#22594)
Signed-off-by: -LAN- <laipz8200@outlook.com>
3 meses atrás
hato_code
62586719b3
fix: remove redundant partial member list retrieval in dataset API (#15492)
3 meses atrás
Maries
a4ef900916
Support OAuth Integration for Plugin Tools (#22550)
Co-authored-by: zxhlyh <jasonapring2015@outlook.com>
Co-authored-by: Yeuoly <admin@srmxy.cn>
3 meses atrás
NeatGuyCoding
93c27b134d
minor typo fix: remove debug code and fix typo (#22539)
3 meses atrás
zyssyz123
a4f421028c
Feat/change user email (#22213)
Co-authored-by: NFish <douxc512@gmail.com>
Co-authored-by: JzoNg <jzongcode@gmail.com>
Co-authored-by: Garfield Dai <dai.hai@foxmail.com>
3 meses atrás
yihong
d2933c2bfe
fix: drop dead code phase2 unused class (#22042)
Signed-off-by: yihong0618 <zouzou0208@gmail.com>
3 meses atrás
qfl
bdb9f29948
feat(app): support custom max_active_requests per app (#22073)
3 meses atrás
baonudesifeizhai
d52fb18457
feat: auto-fill MCP server description with app description #22443 (#22477)
3 meses atrás
QuantumGhost
2c1ab4879f
refactor(api): Separate SegmentType for Integer/Float to Enable Pydantic Serialization (#22025)
refactor(api): Separate SegmentType for Integer/Float to Enable Pydantic Serialization (#22025 )
This PR addresses serialization issues in the VariablePool model by separating the `value_type` tags for `IntegerSegment`/`FloatSegment` and `IntegerVariable`/`FloatVariable`. Previously, both Integer and Float types shared the same `SegmentType.NUMBER` tag, causing conflicts during serialization.
Key changes:
- Introduce distinct `value_type` tags for Integer and Float segments/variables
- Add `VariableUnion` and `SegmentUnion` types for proper type discrimination
- Leverage Pydantic's discriminated union feature for seamless serialization/deserialization
- Enable accurate serialization of data structures containing these types
Closes #22024 .
3 meses atrás
-LAN-
df89629e04
fix: conversatino statistic including data from debugger (#22412)
Signed-off-by: -LAN- <laipz8200@outlook.com>
3 meses atrás
-LAN-
6eb155ae69
feat(api/repo): Allow to config repository implementation (#21458)
Signed-off-by: -LAN- <laipz8200@outlook.com>
Co-authored-by: QuantumGhost <obelisk.reg+git@gmail.com>
3 meses atrás
NeatGuyCoding
6c233e05a9
minor fix: wrong and (#22242)
3 meses atrás
NeatGuyCoding
f929bfb94c
minor fix: remove duplicates, fix typo, and add restriction for get mcp server (#22170)
Signed-off-by: neatguycoding <15627489+NeatGuyCoding@users.noreply.github.com>
3 meses atrás
Novice
535fff62f3
feat: add MCP support (#20716)
Co-authored-by: QuantumGhost <obelisk.reg+git@gmail.com>
3 meses atrás
jiangbo721
31eb8548ef
fix: Before publish the app, preview the voice of tts, it raise an er… (#21821)
Co-authored-by: 刘江波 <jiangbo721@163.com>
4 meses atrás
baonudesifeizhai
8516d15a4e
fix: handle configure button for notion internal integration (#21412)
4 meses atrás
Bowen Liang
1a7ad195f0
refactor: define the Dify project version in pyproject.toml (#20910)
4 meses atrás
Yeuoly
cea6522122
feat: add DYNAMIC_SELECT parameter type for dynamic options in parameter entities (#21425)
4 meses atrás
Xiyuan Chen
d454f09e13
feat: add a magic field in the cancel invite api response (#21505)
4 meses atrás
Jyong
d60287621a
add dataset info in response (#21413)
4 meses atrás
Jyong
973b3854b4
add dataset info in response (#21406)
4 meses atrás
QuantumGhost
10b738a296
feat: Persist Variables for Enhanced Debugging Workflow (#20699)
This pull request introduces a feature aimed at improving the debugging experience during workflow editing. With the addition of variable persistence, the system will automatically retain the output variables from previously executed nodes. These persisted variables can then be reused when debugging subsequent nodes, eliminating the need for repetitive manual input.
By streamlining this aspect of the workflow, the feature minimizes user errors and significantly reduces debugging effort, offering a smoother and more efficient experience.
Key highlights of this change:
- Automatic persistence of output variables for executed nodes.
- Reuse of persisted variables to simplify input steps for nodes requiring them (e.g., `code`, `template`, `variable_assigner`).
- Enhanced debugging experience with reduced friction.
Closes #19735 .
4 meses atrás
GuanMu
870e73c03b
Knowledge base API supports status updates #18147 (#18235)
4 meses atrás
椰子汁
77be115f09
critical! insert_explore_app_list_api (#21277)
4 meses atrás
Xiyuan Chen
8f64327d57
feat: use default access mode when importing dsl (#21231)
4 meses atrás
Good Wood
0cfdb8c043
fix: fix load_balancing_config save error (#21213)
4 meses atrás