UNPKG

@microsoft/agents-hosting

Version:

Microsoft 365 Agents SDK for JavaScript

27 lines (26 loc) 558 B
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { SearchInvokeOptions } from './searchInvokeOptions'; /** * Represents the value of a search invoke request. */ export interface SearchInvokeValue { /** * The kind of search. */ kind: string; /** * The text of the query. */ queryText: string; /** * The options for the search query. */ queryOptions: SearchInvokeOptions; /** * The context of the search. */ context: any; }