mirror of
https://github.com/microsoft/autogen.git
synced 2026-04-20 03:02:16 -04:00
12 lines
312 B
C#
12 lines
312 B
C#
using System.Text.Json.Serialization;
|
|
using Microsoft.Azure.WebJobs.Extensions.OpenApi.Core.Attributes;
|
|
|
|
namespace Models;
|
|
|
|
internal class ExecuteFunctionResponse
|
|
{
|
|
[JsonPropertyName("response")]
|
|
[OpenApiProperty(Description = "The response from the AI.")]
|
|
public string? Response { get; set; }
|
|
}
|