fix: address methods that return void or task in those cases return null

This commit is contained in:
Stevan Freeborn
2024-07-01 23:14:08 -05:00
parent 1ae90106b5
commit c2788c3893
3 changed files with 39 additions and 2 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ namespace AnthropicClient.Models;
public class ToolCallResult<T>
{
/// <summary>
/// The value of the tool call result.
/// The value of the tool call result. Can be null if the call failed, the call was successful but the return type is void or Task, or the call was successful but the return value is null
/// </summary>
public T? Value { get; }