1 implementation of IFoundryTool
Aspire.Hosting.Foundry (1)
ToolResources\FoundryToolResource.cs (1)
18public abstract class FoundryToolResource : Resource, IFoundryTool
6 references to IFoundryTool
Aspire.Hosting.Foundry (6)
PromptAgent\AzurePromptAgentResource.cs (4)
38private readonly List<IFoundryTool> _tools = []; 142public IReadOnlyList<IFoundryTool> Tools => _tools; 260foreach (var tool in _tools) 279internal void AddCustomTool(IFoundryTool tool)
PromptAgent\PromptAgentBuilderExtensions.cs (2)
667/// Adds a custom tool implementation to a prompt agent using the <see cref="IFoundryTool"/> interface. 680IFoundryTool tool)