Quick Start

subscription ContinueChatSession {
  continueChatResult(
    input: { messageInput: "Continue new chat", sessionId: "<sessionId>" }
  ) {
    isEnd
    message {
      content
      id
      citations {
        citationNumber
        title
        url
      }
    }
  }
}

The continueChatResult subscription is used to continue an existing chat session without the need to re-specify conversation history, filters, or other parameters of the chat session. See start new chat for creating a chat session.

Try the API Playground for an interactive way to use the API.

Want to try out a REST version of our API? Contact us at support@inkeep.com for the documentation. It's a native proxy on top of our GraphQL API with equivalent functionality.

Reference

ContinueChatResult

ArgumentTypeDescription
inputContinueChatResultInputRequired. The input parameters that will be used in the subscription.

Input Types

ContinueChatResultInput

PropertyTypeDescription
sessionIdID!Required. The ID of the session.
messageInputString!Required. The message input string.
messageContextStringThe context of the message.

Response

See the Chat Result documentation for details in the API response.