// Copyright (c) Microsoft. All rights reserved. namespace Foundry.Hosting.IntegrationTests.Fixtures; /// /// Provisions a hosted agent that runs the test container in IT_SCENARIO=store-config mode. /// Used by HostedResponsesStoreConfigTests to exercise store/session semantics: store=true /// vs store=false, previous_response_id and conversation_id forks, and multi-turn /// recall. The container agent is a neutral assistant with no marker instruction so it never /// contaminates the content assertions. /// public sealed class HostedResponsesStoreConfigFixture : HostedAgentFixture { protected override string ScenarioName => "store-config"; }