@microsoft/agents-hosting
Version:
Microsoft 365 Agents SDK for JavaScript
29 lines (26 loc) • 523 B
text/typescript
/**
* 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
}