Skip to main content
Version: Latest

AssistantConversationMessageResponse

type AssistantConversationMessageResponse {
id: String!
generatedAt: DateTime
error: AssistantConversationMessageError
progress: Float
plan: AssistantPlanInterface!
workflow: AssistantConversationMessageWorkflow
answers: [AssistantAnswerItemInterface!]
followUpQuestions: [String!]
conversationalFollowUpsTemp: [String!]
refrenceLinks: [AssistantRefrenceLink!]
responseMode: AssistantResponseMode
}

Fields

AssistantConversationMessageResponse.id ● String! non-null scalar graph-ql-types

The id of the response. Combination of message_id and post-fix @exposed

AssistantConversationMessageResponse.generatedAt ● DateTime scalar graph-ql-types

The timestamp of the response generation. @exposed

AssistantConversationMessageResponse.error ● AssistantConversationMessageError object graph-ql-types

@exposed

AssistantConversationMessageResponse.progress ● Float scalar graph-ql-types

The progress of the response generation. Missing progress and value equal to 1 means that the response is generated. Values between 0 and less than 1 indicate the progress of the response generation. @exposed

AssistantConversationMessageResponse.plan ● AssistantPlanInterface! non-null interface graph-ql-types

The plan contains information how AI generated the answer. @exposed

AssistantConversationMessageResponse.workflow ● AssistantConversationMessageWorkflow object graph-ql-types

The workflow steps of the response generation. @exposed

AssistantConversationMessageResponse.answers ● [AssistantAnswerItemInterface!] list interface graph-ql-types

@exposed

AssistantConversationMessageResponse.followUpQuestions ● [String!] list scalar graph-ql-types

Suggested follow-up questions for further exploration @exposed

AssistantConversationMessageResponse.conversationalFollowUpsTemp ● [String!] list scalar graph-ql-types

The content text of the follow-up questions. This is a temporary field and might be deprecated soon. @exposed

Refrence web links associated with the response. @exposed

AssistantConversationMessageResponse.responseMode ● AssistantResponseMode enum graph-ql-types

@exposed

Member Of

AssistantConversationMessage object