Closed
Description
const runner = new Runner({
workflowName: 'chatbot_storefront',
groupId: chatSession.sessionId,
traceId: `trace_${message.id}`,
tracingDisabled: false
})
const result = await runner.run(
startAgent,
message.message.content,
{
context: context,
previousResponseId: chatSession.lastResponseId,
stream: true
},
);
I can see traces in Traces Dashboard but their workflowName, groupId, and traceId are not set as defined.
Am I missing something or is it a bug?