fix(strategize): propagate actor options (openai_api_base, openai_api_key) to LLM client creation in Strategize/Execute paths #11257
No reviewers
Labels
No labels
auto/needs-reevaluation
controller-managed
auto/blocked-by-deps
auto/ci-timeout
auto/claimed-implementer
auto/claimed-merge
auto/claimed-reviewer
auto/driver-down
auto/invariant-violation
auto/last-attempt-tier-0
auto/last-attempt-tier-1
auto/last-attempt-tier-2
auto/last-attempt-tier-min
Automation Tracking
auto/needs-conflict-resolution
auto/needs-implementer
auto/postmortem
auto/ready-to-merge
auto/restart-throttled
auto/revert
auto/sentinel
auto/stale-inactivity
auto/unstable
Blocked
Bounty
$100
Bounty
$1000
Bounty
$10000
Bounty
$20
Bounty
$2000
Bounty
$250
Bounty
$50
Bounty
$500
Bounty
$5000
Bounty
$750
MoSCoW
Could have
MoSCoW
Must have
MoSCoW
Should have
Needs Feedback
Points
1
Points
13
Points
2
Points
21
Points
3
Points
34
Points
5
Points
55
Points
8
Points
88
Priority
Backlog
Priority
CI Blocker
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Signed-off: Owner
Signed-off: Scrum Master
Signed-off: Tech Lead
Spike
State
Completed
State
Duplicate
State
In Progress
State
In Review
State
Paused
State
Unverified
State
Verified
State
Wont Do
Type
Automation
Type
Bug
Type
Discussion
Type
Documentation
Type
Epic
Type
Feature
Type
Legendary
Type
Refactor
Type
Support
Type
Task
Type
Testing
No project
No assignees
3 participants
Notifications
Due date
No due date set.
Blocks
Reference
cleveragents/cleveragents-core!11257
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "bugfix/m5-actor-options-ignored"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Propagates actor-level YAML
options(such asopenai_api_baseandopenai_api_key) through toProviderRegistry.create_llm()in the Strategize and Execute phases, and in session-based workflows.Previously these options were silently ignored, causing LLM calls to fall back to the real OpenAI internet endpoint instead of the user-configured local backend.
Root Cause
Two independent gaps:
ActorConfigSchemasilently droppedoptions— nooptionsfield, and Pydantic v2 defaults toextra='ignore', sooptionswas stripped during validation.Four call sites never forwarded options to
create_llm()—StrategyActor._execute_with_llm(),LLMStrategizeActor.execute(),LLMExecuteActor.execute(), andSessionWorkflow._resolve_llm()all created the LLM with zero extra kwargs.Changes
New shared utility (
src/cleveragents/actor/config.py)build_llm_kwargs_from_options()— extractsopenai_api_base,openai_api_key(via__api_key_sentinel), and other allowed kwargs from actor options dict_ALLOWED_LLM_OPTIONS/_RESERVED_LLM_OPTIONSconstantsSchema fix (
src/cleveragents/actor/schema.py)options: dict[str, Any]field toActorConfigSchemaLifecycle/protocol additions
PlanLifecycleService.resolve_actor_options()— retrieves options from actorconfig_blobresolve_actor_options()toLifecycleServiceprotocol (strategy_resolution.py)resolve_actor_options()toPlanLifecycleProtocol(llm_actors.py)build_actor_options_resolver()utility in strategy_resolution.pyFixed 4 call sites
StrategyActor._execute_with_llm()— resolves options before callingcreate_llm()LLMStrategizeActor.execute()— resolves options before callingcreate_llm()LLMExecuteActor.execute()— resolves options before callingcreate_llm()SessionWorkflow._resolve_llm()— newactor_options_resolverparameterRefactored reactive path
reactive/stream_router.pyandreactive/tool_caller.pynow usebuild_llm_kwargs_from_options()instead of inline copiesWiring
_build_actor_options_resolver()wired toSessionWorkflow_build_actor_options_resolver_for_session_workflow()wiredTests
features/actor_options_propagation.feature— 14 BDD scenarios passingCloses #11256
options.openai_api_baseandoptions.openai_api_keyto LLM client creation in Strategize/Execute paths7a7d3b81210ecacf9f22options(openai_api_base,openai_api_key) ignored in Strategize/Execute paths — LLM calls fall back to real OpenAI instead of local backend0ecacf9f229a10e79b029a10e79b02080e1d5e3fClaimed by
merge_drive.py(pid 1264876) until2026-05-28T23:05:06.184455+00:00.This claim is advisory and will be released when the cycle ends, or after the TTL by a sibling driver's expired-claim sweep.
8d9cedce8cfae4384370Claimed by
merge_drive.py(pid 1264876) until2026-05-29T01:39:37.590838+00:00.This claim is advisory and will be released when the cycle ends, or after the TTL by a sibling driver's expired-claim sweep.
Approved by the controller reviewer stage (workflow 19).