// Copyright (c) Microsoft. All rights reserved.
namespace Microsoft.Extensions.AI;
///
/// Proposal for abstraction updates based on the common file search tool properties.
/// This provides a standardized interface for file search functionality across providers.
///
public class NewHostedFileSearchTool : AITool
{
/// Gets or sets a collection of to be used as input to the code interpreter tool.
///
/// Services support different varied kinds of inputs. Most support the IDs of vector stores that are hosted by the service,
/// represented via . Some also support binary data, represented via .
/// Unsupported inputs will be ignored by the to which the tool is passed.
///
public IList? Inputs { get; set; }
}