Skip to content

Commit 3415422

Browse files
committed
DevUI: Use metadata.entity_id for agent/workflow name instead of model field
1 parent 5a8ba5b commit 3415422

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

  • dotnet/samples/GettingStarted/Workflows/_Foundational

dotnet/samples/GettingStarted/Workflows/_Foundational/07_MixedWorkflowAgentsAndExecutors/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ private static async Task ExecuteWorkflowAsync(Workflow workflow, string input)
132132
const bool ShowAgentThinking = false;
133133

134134
// Execute in streaming mode to see real-time progress
135-
await using StreamingRun run = await InProcessExecution.StreamAsync<string>(workflow, input);
135+
await using StreamingRun run = await InProcessExecution.StreamAsync(workflow, input);
136136

137137
// Watch the workflow events
138138
await foreach (WorkflowEvent evt in run.WatchStreamAsync())

dotnet/samples/GettingStarted/Workflows/_Foundational/08_WriterCriticWorkflow/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ private static async Task Main()
8989
private static async Task ExecuteWorkflowAsync(Workflow workflow, string input)
9090
{
9191
// Execute in streaming mode to see real-time progress
92-
await using StreamingRun run = await InProcessExecution.StreamAsync<string>(workflow, input);
92+
await using StreamingRun run = await InProcessExecution.StreamAsync(workflow, input);
9393

9494
// Watch the workflow events
9595
await foreach (WorkflowEvent evt in run.WatchStreamAsync())

0 commit comments

Comments
 (0)