We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ed82e1 commit d032b99Copy full SHA for d032b99
python/flink_agents/plan/actions/chat_model_action.py
@@ -192,6 +192,8 @@ async def chat(
192
for attempt in range(num_retries + 1):
193
try:
194
if chat_async:
195
+ # TODO: Support report metrics in async thread
196
+ chat_model.set_metric_group(None)
197
response = await ctx.durable_execute_async(chat_model.chat, messages)
198
else:
199
response = chat_model.chat(messages)
0 commit comments