diff --git a/features/actor_loading.feature b/features/actor_loading.feature index 56af4cc12..4700130d0 100644 --- a/features/actor_loading.feature +++ b/features/actor_loading.feature @@ -242,17 +242,17 @@ Feature: Actor registry and loader Given a temporary actors directory with a list-content YAML file "list.yaml" When I create an actor loader with that directory as search root And I run discovery expecting errors - Then the loader should raise a validation error mentioning "list.yaml" + Then the loader should raise a validation error mentioning "list.yaml" - Scenario: LLM actor without tools does not produce warnings with tool registry - Given a tool registry with tool "files/read_file" - And a temporary actors directory with files - | filename | name | type | model | - | simple.yaml | assistants/simple | llm | gpt-4 | - When I create an actor loader with that directory and the tool registry - And I run discovery - Then the loader should contain actor "assistants/simple" - And the loader should have 0 warnings + Scenario: LLM actor without tools does not produce warnings with tool registry + Given a tool registry with tool "files/read_file" + And a temporary actors directory with files + | filename | name | type | model | + | simple.yaml | assistants/simple | llm | gpt-4 | + When I create an actor loader with that directory and the tool registry + And I run discovery + Then the loader should contain actor "assistants/simple" + And the loader should have 0 warnings # ──────────────────────────────────────────────────────── # Concurrency and race conditions