Fix ty
This commit is contained in:
parent
1782e01922
commit
a0025e9203
2 changed files with 11 additions and 6 deletions
|
|
@ -1,9 +1,14 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- **Activity events**: TUI and web frontend now display skill sub-agent tool calls via `ActivitySnapshotEvent`
|
||||||
|
|
||||||
### Changed
|
### 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.
|
- **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
|
## [0.33.3] - 2026-03-12
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -287,10 +287,10 @@ class TestRunOptimization:
|
||||||
return DatasetSpec(
|
return DatasetSpec(
|
||||||
key="test",
|
key="test",
|
||||||
db_filename="test.lancedb",
|
db_filename="test.lancedb",
|
||||||
document_loader=lambda: None, # type: ignore[return-value]
|
document_loader=lambda: None,
|
||||||
document_mapper=lambda doc: None,
|
document_mapper=lambda doc: None,
|
||||||
qa_loader=lambda: None, # type: ignore[return-value]
|
qa_loader=lambda: None,
|
||||||
qa_case_builder=lambda idx, doc: None, # type: ignore[return-value]
|
qa_case_builder=lambda idx, doc: None,
|
||||||
system_prompt="You are a test assistant.",
|
system_prompt="You are a test assistant.",
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
@ -348,10 +348,10 @@ class TestRunOptimization:
|
||||||
spec = DatasetSpec(
|
spec = DatasetSpec(
|
||||||
key="test",
|
key="test",
|
||||||
db_filename="test.lancedb",
|
db_filename="test.lancedb",
|
||||||
document_loader=lambda: None, # type: ignore[return-value]
|
document_loader=lambda: None,
|
||||||
document_mapper=lambda doc: None,
|
document_mapper=lambda doc: None,
|
||||||
qa_loader=lambda: None, # type: ignore[return-value]
|
qa_loader=lambda: None,
|
||||||
qa_case_builder=lambda idx, doc: None, # type: ignore[return-value]
|
qa_case_builder=lambda idx, doc: None,
|
||||||
)
|
)
|
||||||
cases = _make_cases(4)
|
cases = _make_cases(4)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue