Feat: add skills space to context engine (#13908)

### What problem does this PR solve?

issue #13714

### Type of change

- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
Yingfeng
2026-04-30 12:36:03 +08:00
committed by GitHub
parent bb3b99f0a5
commit 4ee0702aed
101 changed files with 19161 additions and 633 deletions

View File

@@ -221,7 +221,7 @@ def test_upload_file_success_uses_new_service_layer(monkeypatch):
monkeypatch.setattr(
module.FileService,
"create_folder",
lambda _file, parent_id, _names, _len_id: SimpleNamespace(id=parent_id),
lambda _file, parent_id, _names, _len_id, *_args: SimpleNamespace(id=parent_id),
)
monkeypatch.setattr(module.settings, "STORAGE_IMPL", SimpleNamespace(
obj_exist=lambda *_args, **_kwargs: False,