Frederick2313072
594906c1ff
fix: MD5 and 8‑hex Suffix Collision Risk
2025-09-24 17:01:23 +08:00
Frederick2313072
80f8245f2e
fix(api): sync api/uv.lock with main to resolve binary diff
2025-09-24 12:00:50 +08:00
Frederick2313072
a12b437c16
fix(api): sync api/uv.lock with main to resolve binary diff
2025-09-24 11:58:07 +08:00
Frederick2313072
12de554313
fix: add index initialization checks, improve batch vector operations and search, ensure robust exception handling.
2025-09-23 16:41:46 +08:00
Frederick2313072
1f36c0c1c5
sync docker compose files with main branch
2025-09-23 00:12:54 +08:00
Frederick2313072
8b9297563c
fix
2025-09-23 00:03:31 +08:00
Frederick2313072
1cbe9eedb6
fix(pinecone): normalize index names and sanitize metadata to meet API constraints
2025-09-20 02:56:53 +08:00
Frederick2313072
90fc5a1f12
pipecone
2025-09-16 08:57:46 +08:00
Frederick2313072
41dfdf1ac0
fix:score threshold
2025-09-01 16:34:17 +08:00
Frederick2313072
dd7de74aa6
修复top-k硬编码回退问题
2025-09-01 14:27:43 +08:00
17hz
f11131f8b5
fix: basepath did not read from the environment variable ( #24870 )
2025-09-01 13:50:33 +08:00
NeatGuyCoding
2e6e414a9e
the conversion OAuthGrantType(parsed_args["grant_type"]) can raise ValueError for invalid values which is not caught and will produce a 500 ( #24854 )
2025-09-01 10:05:54 +08:00
NeatGuyCoding
c45d676477
remove duplicated authorization header handling and bearer should be case-insensitive ( #24852 )
2025-09-01 10:05:19 +08:00
Asuka Minato
b8d8dddd5a
example of decorator typing ( #24857 )
...
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2025-09-01 10:04:24 +08:00
NeatGuyCoding
c45c22b1b2
fix translation of all oauth.ts ( #24855 )
2025-09-01 10:04:05 +08:00
Yongtao Huang
3d57a9ccdc
Fix never hit `(!code || code.length === 0)` ( #24860 )
2025-09-01 09:45:07 +08:00
Asuka Minato
cb04c21141
model_config = ConfigDict(extra='allow') ( #24859 )
...
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2025-08-31 23:21:41 +08:00
17hz
f70272f638
refactor: replace clsx with classnames ( #24776 )
2025-08-31 17:08:29 +08:00
lyzno1
b4b71ded47
chore: remove unused i18n keys ( #24803 )
2025-08-31 17:07:15 +08:00
Asuka Minato
24e2b72b71
Update ast-grep pattern for session.query ( #24828 )
...
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2025-08-31 17:03:51 +08:00
17hz
529791ce62
fix: Variable Aggregator cannot select conversation variables ( #24793 )
2025-08-31 17:03:36 +08:00
NeatGuyCoding
b66945b9b8
feat: add test containers based tests for api tool manage service ( #24821 )
2025-08-31 17:02:08 +08:00
-LAN-
f3c5d77ad5
chore: remove duplicate Python style checks handled by autofix CI ( #24833 )
2025-08-31 17:01:19 +08:00
lyzno1
e5e42bc483
fix: XSS vulnerability in block-input and support-var-input components ( #24835 )
2025-08-31 17:01:10 +08:00
NeatGuyCoding
bdfbfa391f
Feature add test containers mcp tools manage service ( #24840 )
2025-08-31 17:01:01 +08:00
Yongtao Huang
72acd9b483
Remove redundant from_variable_selector null-check ( #24842 )
2025-08-31 17:00:13 +08:00
Asuka Minato
9f528d23d4
poc of validate config ( #24837 )
...
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2025-08-31 02:41:52 +08:00
Hwting
d937cc491d
chore[docker]: Fix Redis health check error but display healthy ( #24778 )
2025-08-30 06:19:43 -07:00
Yongtao Huang
863f3aeb27
Fix: rm invalid errorMessage on e.toString() ( #24805 )
2025-08-30 06:18:51 -07:00
horochx
0fe078d25e
fix: workflow_finish_to_stream_response assert exception with celery … ( #24674 )
...
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2025-08-30 00:59:21 +08:00
-LAN-
d9420c7224
refactor: reorganize the CI pipeline ( #24817 )
...
Signed-off-by: -LAN- <laipz8200@outlook.com>
2025-08-30 00:12:25 +08:00
-LAN-
9ff6baaf52
refactor: remove duplicate pull_request triggers from workflow files ( #24814 )
2025-08-29 23:09:26 +08:00
-LAN-
574d00bb13
fix: add missing statuses permission to main CI workflow ( #24809 )
2025-08-29 22:33:13 +08:00
QuantumGhost
8d60e5c342
chore(api): fix Alembic offline migration compatibility ( #24795 )
...
This PR fixes Alembic offline mode (`--sql` flag) by ensuring data migration functions only execute in online mode. When running in offline mode, these functions now skip data operations and output informational comments to the generated SQL.
2025-08-29 19:13:24 +08:00
QuantumGhost
d9eb1a73af
fix(api): fix `DetachedInstanceError` for Account.current_tenant_id ( #24789 )
...
The `Account._current_tenant` object is loaded by a database session (typically `db.session`) whose lifetime
is not aligned with the Account model instance. This misalignment causes a `DetachedInstanceError` to be raised
when accessing attributes of `Account._current_tenant` after the original session has been closed.
To resolve this issue, we now reload the tenant object with `expire_on_commit=False`, ensuring the tenant remains
accessible even after the session is closed.
2025-08-29 19:12:02 +08:00
Novice
1a34ff8a67
fix: change the mcp server strucutre to support github copilot ( #24788 )
2025-08-29 18:00:58 +08:00
非法操作
14e7ba4818
chore: change the oauth_provider_apps table to uuidV7 ( #24792 )
2025-08-29 17:54:14 +08:00
zyileven
52e9bcbfdb
fix(web): improve floating UI positioning when scrolling ( #24595 ) ( #24782 )
2025-08-29 16:49:13 +08:00
-LAN-
20ae3eae54
feat: add filename support to multi-modal prompt messages ( #24777 )
2025-08-29 16:22:26 +08:00
17hz
0fb145e667
refactor: Promote basepath to environment variable ( #24445 )
...
Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com>
2025-08-29 15:39:37 +08:00
zyileven
bcac43c812
fix(web): fix error notify when tagInput component is not required (#… ( #24774 )
2025-08-29 15:30:40 +08:00
QIN2DIM
929d9e0b3f
feat(api): maintain assistant content parts and file handling in advanced chat ( #24663 )
...
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2025-08-29 15:19:55 +08:00
github-actions[bot]
d5e560a987
chore: translate i18n files ( #24770 )
...
Co-authored-by: RockChinQ <45992437+RockChinQ@users.noreply.github.com>
2025-08-29 14:34:35 +08:00
kenwoodjw
e4383d6167
Chore: remove dupliacte logic in DatasetApi.get() ( #24769 )
...
Signed-off-by: kenwoodjw <blackxin55+@gmail.com>
2025-08-29 14:25:36 +08:00
Junyan Qin (Chin)
f32e176d6a
feat: oauth provider ( #24206 )
...
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: yessenia <yessenia.contact@gmail.com>
2025-08-29 14:10:51 +08:00
Bowen Liang
3d5a4df9d0
chore: use orjson in streaming event JSON serialisation for performance improvement ( #24763 )
2025-08-29 14:06:07 +08:00
-LAN-
e47bfd2ca3
feat: orchestrate CI workflows to prevent duplicate runs when autofix makes changes ( #24758 )
2025-08-29 13:23:08 +08:00
lyzno1
f8f768873e
fix: inconsistent text color for settings button in webapp cards ( #24754 )
2025-08-29 12:10:27 +08:00
NeatGuyCoding
d043e1a05a
feat: add test containers based tests for workspace service ( #24752 )
2025-08-29 12:10:13 +08:00
Yongtao Huang
837c0ddacc
Chore: remove dead func AppModelConfig.copy() with wrong logic ( #24747 )
2025-08-29 11:38:24 +08:00