/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Send a chat message to the Synapse chat agent * @export * @interface AgentChatRequest */ export interface AgentChatRequest { /** * * @type {string} * @memberof AgentChatRequest */ concreteType: AgentChatRequestConcreteTypeEnum; /** * The sessionId that identifies the conversation with the agent. * @type {string} * @memberof AgentChatRequest */ sessionId?: string; /** * The user's text message to send to the agent. * @type {string} * @memberof AgentChatRequest */ chatText?: string; /** * Optional. When trace is enabled, the agent will include information about its decision process and the functions/tools it will use to process this request. Default value is false. * @type {boolean} * @memberof AgentChatRequest */ enableTrace?: boolean; } /** * @export */ export declare const AgentChatRequestConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_agent_AgentChatRequest: "org.sagebionetworks.repo.model.agent.AgentChatRequest"; }; export type AgentChatRequestConcreteTypeEnum = typeof AgentChatRequestConcreteTypeEnum[keyof typeof AgentChatRequestConcreteTypeEnum]; /** * Check if a given object implements the AgentChatRequest interface. */ export declare function instanceOfAgentChatRequest(value: object): value is AgentChatRequest; export declare function AgentChatRequestFromJSON(json: any): AgentChatRequest; export declare function AgentChatRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgentChatRequest; export declare function AgentChatRequestToJSON(json: any): AgentChatRequest; export declare function AgentChatRequestToJSONTyped(value?: AgentChatRequest | null, ignoreDiscriminator?: boolean): any;