fix: coerce supporting_cluster_ids items to str in hypothesizer LLM response parsing #38
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#38
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
In
app/services/diagnose/hypothesizer.py, the LLM response parsing does:If the LLM returns integers (e.g.,
[1, 2]) instead of strings, they are silently stored in atuple[str, ...]typed field as ints.Fix
Found by
Post-implementation code review of feat/29-multi-agent-diagnose.