// Copyright (c) Microsoft. All rights reserved. namespace Foundry.Hosting.IntegrationTests.Fixtures; /// /// Provisions a hosted agent that runs the test container in IT_SCENARIO=tool-calling mode. /// The container declares one or more deterministic AIFunctions on the server side /// (e.g. GetUtcNow, Multiply(int,int)) so tests can verify tool invocation behavior /// without requiring approvals. /// public sealed class ToolCallingHostedAgentFixture : HostedAgentFixture { protected override string ScenarioName => "tool-calling"; }