-LAN-
7ba1f0a046
chore: improve typing
Signed-off-by: -LAN- <laipz8200@outlook.com>
1ヶ月前
-LAN-
2adf5d0eee
docs: remove outdated document
1ヶ月前
-LAN-
103a9a4e67
fix(graph_engine): add type hint for workers_to_remove
1ヶ月前
-LAN-
15b3443e9e
fix(debug_logging_layer): remove access for variable pool
1ヶ月前
-LAN-
81e9d6f63a
fix: correct type checking for None values in code node output validation
- Fixed isinstance() checks to properly handle None values by checking None separately
- Fixed typo in STRING type validation where 'output_name' was hardcoded as string instead of variable
- Updated error message format to be consistent and more informative
- Updated test assertion to match new error message format
1ヶ月前
-LAN-
9c2943183e
test: fix code node
Signed-off-by: -LAN- <laipz8200@outlook.com>
1ヶ月前
-LAN-
f6a2a09815
test: fix code node
Signed-off-by: -LAN- <laipz8200@outlook.com>
1ヶ月前
-LAN-
e229510e73
perf: eliminate lock contention in worker pool by removing callbacks
Remove worker idle/active callbacks that caused severe lock contention.
Instead, use sampling-based monitoring where worker states are queried
on-demand during scaling decisions. This eliminates the performance
bottleneck caused by workers acquiring locks 10+ times per second.
Changes:
- Remove callback parameters from Worker class
- Add properties to expose worker idle state directly
- Update WorkerPool to query worker states without callbacks
- Maintain scaling functionality with better performance
1ヶ月前
-LAN-
36048d1526
feat(graph_engine): allow to scale down without lock
Signed-off-by: -LAN- <laipz8200@outlook.com>
1ヶ月前
-LAN-
aff7ca12b8
fix(code_node): type checking bypass
Signed-off-by: -LAN- <laipz8200@outlook.com>
1ヶ月前
-LAN-
ad9eed2551
fix: disable scale for perfermance
Signed-off-by: -LAN- <laipz8200@outlook.com>
1ヶ月前
-LAN-
07109846e0
Merge remote-tracking branch 'origin/main' into feat/queue-based-graph-engine
1ヶ月前
-LAN-
2aeaefccec
test: fix test
1ヶ月前
-LAN-
4d63bd2083
refactor(graph_engine): rename SimpleWorkerPool to WorkerPool
1ヶ月前
lyzno1
fb307ae128
feat: add TypeScript type safety for i18next with automated maintenance (#25152)
1ヶ月前
-LAN-
226f14a20f
feat(graph_engine): implement scale down worker
Signed-off-by: -LAN- <laipz8200@outlook.com>
1ヶ月前
CrabSAMA
8d5f788f2b
feat(workflow): Allow paste node into nested block (#24234)
Co-authored-by: crab.huang <crab.huang@huolala.cn>
1ヶ月前
Will
804e599598
fix: EndUser not bound to Session when plugin invokes callback (#25132)
1ヶ月前
autofix-ci[bot]
2b28aed4e2
[autofix.ci] apply automated fixes
1ヶ月前
-LAN-
938a845852
Merge remote-tracking branch 'origin/main' into feat/queue-based-graph-engine
1ヶ月前
-LAN-
ead8568bfc
fix: some errors reported by basedpyright
Signed-off-by: -LAN- <laipz8200@outlook.com>
1ヶ月前
Davide Delbianco
cdf9b674dc
chore: Bump weaviate-client to latest v3 version (#25096)
1ヶ月前
Tonlo
d5aaee614f
fix recommended apps reading from db logic (#25071)
1ヶ月前
Yongtao Huang
865ba8bb4f
Minor fix: correct get_app_model mode for delete() (#25082)
Signed-off-by: Yongtao Huang <yongtaoh2022@gmail.com>
1ヶ月前
znn
ebbb4a5d0b
fix png jpeg export (#25110)
1ヶ月前
17hz
9040b534c8
fix: TypeSelector component style (#25124)
1ヶ月前
非法操作
0a0ae16bd6
fix: old custom model not display credential name (#25112)
1ヶ月前
fenglin
c22b325c31
fix: align text color in dark mode for config var type selector (#25121)
1ヶ月前
NeatGuyCoding
c0d82a412d
feat: add test containers based tests for workflow converter (#25115)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
1ヶ月前
Yongtao Huang
ac057a2d40
Chore: remove dead code in class Graph (#22791)
Co-authored-by: Yongtao Huang <99629139+hyongtao-db@users.noreply.github.com>
1ヶ月前
Will
3427f19a01
chore: improved trace info for generating conversation name (#25118)
1ヶ月前
znn
8effbaf101
make icon consistent in dropdown (#25109)
1ヶ月前
-LAN-
53c4a8787f
[Chore/Refactor] Improve type safety and resolve type checking issues (#25104)
1ヶ月前
-LAN-
017a75aa44
chore: enhance basedpyright-check script to support path arguments (#25108)
1ヶ月前
-LAN-
ed22d04ea0
test: remove outdated test case
1ヶ月前
-LAN-
04bbf540d9
chore: code format
Signed-off-by: -LAN- <laipz8200@outlook.com>
1ヶ月前
-LAN-
657c27ec75
feat(graph_engine): make runtime state read-only in layer
Signed-off-by: -LAN- <laipz8200@outlook.com>
1ヶ月前
-LAN-
16e9cd5ac5
feat(graph_runtime_state): prevent to set variable pool after initialized.
1ヶ月前
-LAN-
61c79b0013
test: correct imported name
1ヶ月前
-LAN-
8332472944
refactor(graph_engine): rename Layer to GraphEngineLayer
Signed-off-by: -LAN- <laipz8200@outlook.com>
1ヶ月前
-LAN-
fe3f03e50a
feat: add property-based access control to GraphRuntimeState
- Replace direct field access with private attributes and property decorators
- Implement deep copy protection for mutable objects (dict, LLMUsage)
- Add helper methods: set_output(), get_output(), update_outputs()
- Add increment_node_run_steps() and add_tokens() convenience methods
- Update loop_node and event_handlers to use new accessor methods
- Add comprehensive unit tests for immutability and validation
- Ensure backward compatibility with existing property access patterns
1ヶ月前
-LAN-
9c96b23d55
Merge remote-tracking branch 'origin/main' into feat/queue-based-graph-engine
2ヶ月前
zz_xu
56afb3fd64
db internal server error (#24947)
Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com>
2ヶ月前
NeatGuyCoding
a9c7669c16
chore: comply to RFC 6750 and improve bearer token split (#24955)
2ヶ月前
17hz
aae792a9dd
chore: Updated pnpm version to 10.15.1 (#25065)
2ヶ月前
Yongtao Huang
db53656a45
Fix jsonschema compliance: use number instead of float (#25049)
Signed-off-by: Yongtao Huang<yongtaoh2022@gmail.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2ヶ月前
GuanMu
ff7a0e3170
fix: improve error logging for vector search operation in MyScale (#25087)
2ヶ月前
-LAN-
c7700ac176
chore(docker): bump version (#25092)
Signed-off-by: -LAN- <laipz8200@outlook.com>
2ヶ月前
Stream
d011ddfc64
chore(version): bump version to 1.8.1 (#25060)
2ヶ月前
zxhlyh
67cc70ad61
fix: model credential name (#25081)
Co-authored-by: hjlarry <hjlarry@163.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2ヶ月前