feat: add models for streaming messages
This commit is contained in:
@@ -8,17 +8,17 @@ public class ToolUseContent : Content
|
||||
/// <summary>
|
||||
/// Gets the ID of the tool use.
|
||||
/// </summary>
|
||||
public string Id { get; set; } = string.Empty;
|
||||
public string Id { get; init; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Gets the name of the tool.
|
||||
/// </summary>
|
||||
public string Name { get; set; } = string.Empty;
|
||||
public string Name { get; init; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Gets the input of the tool.
|
||||
/// </summary>
|
||||
public Dictionary<string, object?> Input { get; set; } = [];
|
||||
public Dictionary<string, object?> Input { get; init; } = [];
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="ToolUseContent"/> class.
|
||||
|
||||
Reference in New Issue
Block a user