Replace system role message

In UserTurnCompletionMixin, use a developer role message for
LLM messages following an incomplete turn
This commit is contained in:
Mark Backman
2026-04-16 21:26:08 -04:00
parent c6a1837844
commit 36319ecbf0

View File

@@ -292,7 +292,7 @@ class UserTurnCompletionLLMServiceMixin:
# Push through pipeline to trigger LLM response
await self.push_frame(
LLMMessagesAppendFrame(messages=[{"role": "system", "content": prompt}])
LLMMessagesAppendFrame(messages=[{"role": "developer", "content": prompt}])
)
await self.push_frame(LLMRunFrame())