This commit is contained in:
Yiorgis Gozadinos 2026-03-13 12:49:26 +02:00
parent 1782e01922
commit a0025e9203
No known key found for this signature in database
2 changed files with 11 additions and 6 deletions

View file

@ -1,9 +1,14 @@
# Changelog
## [Unreleased]
### Added
- **Activity events**: TUI and web frontend now display skill sub-agent tool calls via `ActivitySnapshotEvent`
### Changed
- **RLM sandbox**: Bumped pydantic-monty to 0.0.8. Removed `regex_*` external functions — the sandbox now has native `re` and `math` modules via `import`. Also adds `filter()` and `getattr()` builtins.
- **Frontend deps**: Upgraded CopilotKit to 1.54.0 and @ag-ui/client to 0.0.47
## [0.33.3] - 2026-03-12

View file

@ -287,10 +287,10 @@ class TestRunOptimization:
return DatasetSpec(
key="test",
db_filename="test.lancedb",
document_loader=lambda: None, # type: ignore[return-value]
document_loader=lambda: None,
document_mapper=lambda doc: None,
qa_loader=lambda: None, # type: ignore[return-value]
qa_case_builder=lambda idx, doc: None, # type: ignore[return-value]
qa_loader=lambda: None,
qa_case_builder=lambda idx, doc: None,
system_prompt="You are a test assistant.",
)
@ -348,10 +348,10 @@ class TestRunOptimization:
spec = DatasetSpec(
key="test",
db_filename="test.lancedb",
document_loader=lambda: None, # type: ignore[return-value]
document_loader=lambda: None,
document_mapper=lambda doc: None,
qa_loader=lambda: None, # type: ignore[return-value]
qa_case_builder=lambda idx, doc: None, # type: ignore[return-value]
qa_loader=lambda: None,
qa_case_builder=lambda idx, doc: None,
)
cases = _make_cases(4)