3 references to Arguments
Microsoft.Extensions.AI.Integration.Tests (3)
PromptBasedFunctionCallingChatClient.cs (3)
112if (toolCallParsed!.Arguments is not null) 114ParseArguments(toolCallParsed.Arguments); 118message.Contents.Add(new FunctionCallContent(id, toolCallParsed.Name!, toolCallParsed.Arguments is { } args ? new ReadOnlyDictionary<string, object?>(args) : null));