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