// Copyright (c) Microsoft. All rights reserved. using Microsoft.Extensions.AI; using Microsoft.Shared.Diagnostics; namespace Microsoft.Agents.ObjectModel; /// /// Extension methods for . /// internal static class CodeInterpreterToolExtensions { /// /// Creates a from a . /// /// Instance of internal static HostedCodeInterpreterTool AsCodeInterpreterTool(this CodeInterpreterTool tool) { Throw.IfNull(tool); return new HostedCodeInterpreterTool(); } }