GenSearchConversation
type GenSearchConversation {
id: String!
markdown: String
progress: Float
error: AssistantConversationMessageError
slideArtifacts: [GenSearchSlideArtifact!]
}
Fields
GenSearchConversation.id ● String! non-null scalar graph-ql-types
Unique identifier for the conversation thread. @exposed
GenSearchConversation.markdown ● String scalar graph-ql-types
Generated response content formatted as Markdown, null if generation incomplete. @exposed
GenSearchConversation.progress ● Float scalar graph-ql-types
Generation completion percentage (0.0 to 1.0), where 1.0 indicates finished. @exposed
GenSearchConversation.error ● AssistantConversationMessageError object graph-ql-types
Error details if generation failed, null on successful completion. @exposed
GenSearchConversation.slideArtifacts ● [GenSearchSlideArtifact!] list object graph-ql-types
Slide artifacts ("Build Slides") generated for the latest message in this conversation. Slides are generated asynchronously; poll this field until every artifact reaches a terminal status (COMPLETED or FAILED). Returns an empty list when no slides were requested. @exposed
Returned By
genSearch.conversation query
Member Of
GenSearchConversationCreate object