API
Continue a chat session
Continue an existing chat with the Inkeep API.
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
Argument | Type | Description |
---|---|---|
input | ContinueChatResultInput | Required. The input parameters that will be used in the subscription. |
Input Types
ContinueChatResultInput
Property | Type | Description |
---|---|---|
sessionId | ID! | Required. The ID of the session. |
messageInput | String! | Required. The message input string. |
messageContext | String | The context of the message. |
Response
See the Chat Result documentation for details in the API response.