mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 19:32:10 +00:00
Prevented OS credentials from reaching public hosts or cross-origin redirects. Preserved Responses API reasoning items across tool rounds. Fixed nullable tool-call handling and omitted unsupported null request properties. Propagated cancellation correctly. Removed tool argument values from logs and tool results from persisted traces. Added settings validation, clearable optional enums, managed-confidence validation, and safe fallback behavior. Added tool-definition schema and duplicate validation. Fixed documentation JSON, changelog regressions, typos, trailing whitespace, and unused Anthropic code.
11 lines
266 B
C#
11 lines
266 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;
|
|
}
|