@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
52 lines (51 loc) • 1.52 kB
TypeScript
/**
* Vectorize API (Beta)
* API for Vectorize services
*
* The version of the OpenAPI document: 0.0.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import type { N8NConfig } from './N8NConfig';
/**
*
* @export
* @interface StartDeepResearchRequest
*/
export interface StartDeepResearchRequest {
/**
*
* @type {string}
* @memberof StartDeepResearchRequest
*/
query: string;
/**
*
* @type {boolean}
* @memberof StartDeepResearchRequest
*/
webSearch?: boolean;
/**
*
* @type {string}
* @memberof StartDeepResearchRequest
*/
schema?: string;
/**
*
* @type {N8NConfig}
* @memberof StartDeepResearchRequest
*/
n8n?: N8NConfig;
}
/**
* Check if a given object implements the StartDeepResearchRequest interface.
*/
export declare function instanceOfStartDeepResearchRequest(value: object): value is StartDeepResearchRequest;
export declare function StartDeepResearchRequestFromJSON(json: any): StartDeepResearchRequest;
export declare function StartDeepResearchRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): StartDeepResearchRequest;
export declare function StartDeepResearchRequestToJSON(json: any): StartDeepResearchRequest;
export declare function StartDeepResearchRequestToJSONTyped(value?: StartDeepResearchRequest | null, ignoreDiscriminator?: boolean): any;