refactor: extract shared _call_llm helper used by hypothesizer and synthesizer #35
Labels
No labels
compliance
demo
deployment
docs
enhancement
parser
patterns
performance
security
ux
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: Circuit-Forge/turnstone#35
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
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?
Context
_extract_content()and_call_llm()inapp/services/diagnose/hypothesizer.pyandapp/services/diagnose/synthesizer.pyare identical in logic. Any change (retry logic, cf-orch payload structure, timeout) must be made in both places.Fix
Extract to a shared
app/services/diagnose/_llm_client.pymodule (or add tomodels.py) so both stages import from one source.Found by
Post-implementation code review of feat/29-multi-agent-diagnose.