AI-Studio/app/MindWork AI Studio/Provider/OpenAI/ToolResultMessage.cs

11 lines
266 B
C#
Raw Normal View History

namespace AIStudio.Provider.OpenAI;
public sealed record ToolResultMessage : IMessage<string>
{
public string Role { get; init; } = "tool";
public string Content { get; init; } = string.Empty;
public string ToolCallId { get; init; } = string.Empty;
}