3 instantiations of HostedCodeInterpreterTool
Microsoft.Extensions.AI.Abstractions.Tests (2)
HostedCodeInterpreterToolTests.cs (2)
13var tool = new HostedCodeInterpreterTool(); 24var tool = new HostedCodeInterpreterTool
Microsoft.Extensions.AI.OpenAI.Tests (1)
OpenAIAssistantChatClientIntegrationTests.cs (1)
56Tools = [new HostedCodeInterpreterTool()],
7 references to HostedCodeInterpreterTool
Microsoft.Extensions.AI.Abstractions (1)
HostedCodeInterpreterTool.cs (1)
15/// <summary>Initializes a new instance of the <see cref="HostedCodeInterpreterTool"/> class.</summary>
Microsoft.Extensions.AI.Abstractions.Tests (4)
HostedCodeInterpreterToolTests.cs (4)
13var tool = new HostedCodeInterpreterTool(); 14Assert.Equal(nameof(HostedCodeInterpreterTool), tool.Name); 18Assert.Equal(nameof(HostedCodeInterpreterTool), tool.ToString()); 24var tool = new HostedCodeInterpreterTool
Microsoft.Extensions.AI.OpenAI (2)
OpenAIAssistantsChatClient.cs (1)
355case HostedCodeInterpreterTool codeInterpreterTool:
OpenAIResponsesChatClient.cs (1)
429case HostedCodeInterpreterTool codeTool: