mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
db8a59bd3d
* Durable Agent samples and automated validation for non-Azure Functions * Update test projects * fix file encoding * Remove AgentThreadMetadata usage * Absorb breaking change from #3152 * Absorb newer breaking changes (AgentRunResponse --> AgentResponse) * Absorb more breaking changes (see #3222) * Improve integration test reliability (isolated task hubs, etc.) * Fix flakey streaming test --------- Co-authored-by: Mark Wallace <127216156+markwallace-microsoft@users.noreply.github.com>
7 lines
159 B
C#
7 lines
159 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
namespace AgentOrchestration_Chaining;
|
|
|
|
// Response model
|
|
public sealed record TextResponse(string Text);
|