mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-05-20 19:52:15 +00:00
13 lines
321 B
C#
13 lines
321 B
C#
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;
|
|
|
|
public string Name { get; init; } = string.Empty;
|
|
}
|