We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 182ee1a commit 137b785Copy full SHA for 137b785
llmstack/apps/runner/agent_actor.py
@@ -130,7 +130,11 @@ async def _process_output(self):
130
{
131
"output": {
132
**self._agent_outputs,
133
- "output": self._stitched_data["agent"][str(message_index)].data.content[0].data,
+ "output": (
134
+ self._stitched_data["agent"][str(message_index)].data.content[0].data
135
+ if str(message_index) in self._stitched_data["agent"]
136
+ else ""
137
+ ),
138
},
139
"chunks": self._stitched_data,
140
}
0 commit comments