test(actors): fix actor examples missing provider fields and incorrect name
CI / benchmark-publish (pull_request) Has been skipped
CI / build (pull_request) Successful in 18s
CI / lint (pull_request) Failing after 18s
CI / helm (pull_request) Successful in 24s
CI / typecheck (pull_request) Failing after 52s
CI / security (pull_request) Failing after 53s
CI / coverage (pull_request) Has been skipped
CI / benchmark-regression (pull_request) Has been skipped
CI / unit_tests (pull_request) Failing after 1m48s
CI / docker (pull_request) Has been skipped
CI / quality (pull_request) Successful in 3m42s
CI / e2e_tests (pull_request) Failing after 13m56s
CI / integration_tests (pull_request) Failing after 21m12s
CI / status-check (pull_request) Failing after 2s

Add missing provider: field to all actor examples in examples/actors/.
Fix llm_with_tools.yaml actor name from assistants/file_analyzer to
local/assistants-file_analyzer (custom actors must use local/ namespace
and cannot contain two slashes).

Add validate-all command to helper_actor_examples.py that uses ActorLoader
to validate all examples via business logic checks. Add integration test
Validate All Actor Examples Import Without Errors to actor_examples.robot
that confirms every example in examples/actors/ can be imported without
errors.

ISSUES CLOSED: #1504
This commit is contained in:
2026-04-02 23:31:25 +00:00
parent 074c472e36
commit e03fd2956d
10 changed files with 60 additions and 2 deletions
+1
View File
@@ -7,6 +7,7 @@ description: Runs a code review and merges to make the best possible.
version: "0.0"
# LLM model form is Claude Opus 4
provider: anthropic
model: claude-opus-4-20250514
system_prompt: |
+1
View File
@@ -6,6 +6,7 @@ type: llm
description: Generates pre-execution effort, duration, and risk estimates for implementation planning
version: "1.0"
provider: openai
model: gpt-4
role_hint: estimation
context_view: strategist
+1
View File
@@ -7,6 +7,7 @@ description: Test-driven development workflow with automated testing and feedbac
version: "1.0"
# LLM model for agent nodes
provider: openai
model: gpt-4
# Graph topology
@@ -8,6 +8,7 @@ description: >-
Multi-agent development workflow with a strategist, implementer, and
reviewer. Each node has fine-grained LSP and tool-source control.
version: "1.0"
provider: openai
model: gpt-4
# Actor-level skill references
+2 -1
View File
@@ -1,12 +1,13 @@
# LLM Actor with Tools
# Demonstrates an LLM actor with access to multiple tools
name: assistants/file_analyzer
name: local/assistants-file_analyzer
type: llm
description: Analyzes files and generates reports using file system tools
version: "1.0"
# LLM configuration
provider: openai
model: gpt-4-turbo
system_prompt: |
You are a file analysis assistant. Use the available tools to:
+1
View File
@@ -7,6 +7,7 @@ description: Simple document processing workflow (extract → analyze → summar
version: "1.0"
# LLM model
provider: openai
model: gpt-3.5-turbo
# Graph topology
+1
View File
@@ -7,6 +7,7 @@ description: Reviews Python code for best practices, style, and potential bugs
version: "1.0"
# LLM configuration
provider: openai
model: gpt-4
system_prompt: |
You are an expert Python code reviewer. Review code for:
@@ -18,6 +18,7 @@ description: >
using the builtin/plan-subplan tool.
version: "1.0"
provider: openai
model: gpt-4-turbo
context_view: strategist