Thread Conversation

Unlike Upsert Conversation, with thread conversation, you do not need to send us the entire transcript each time that you have new messages in your LLM conversations. As the conversation progresses, you only need to send us the new messages alongside the thread conversation identifier and we will append these messages to the corresponding conversation transcript in Context.ai.

The semantics of thread conversation are: If a conversation request is received without the id property, a new thread conversation is created and the corresponding identifier is returned. For all subsequent appends to this thread conversation, the user is expected to send this identifier in the request. If a conversation request has the id property, the messages are appended to the conversation matching that id.

To use thread conversation, you must:

  1. Always use the same id when appending messages to an existing thread conversation.

  2. Always include the same metadata on each thread conversation log request.

Log a thread conversation

POST https://api.context.ai/api/v1/log/conversation/thread

Records a thread conversation in Context.ai.

Request Body

NameTypeDescription

thread*

Object

A Thread object.

{ 
    "status": "ok",
    "data": {
        "id": "custom_id"
    }
}

Example Request

{
  "conversation": {
    "id": "custom_id"
    "messages": [
      {
        "role": "system",
        "message": "You are a LLM providing information about a local football club.",
        "event_timestamp": "2020-02-20T20:20:23Z"
      },
      {
        "role": "user",
        "message": "What time does the team arrive?",
        "event_timestamp": "2020-02-20T20:21:34Z"
      },
      {
        "role": "assistant",
        "message": "I'm not sure what time the team arrives.",
        "event_timestamp": "2020-02-20T23:20:40Z",
        "rating": -1
      }
    ],
    "metadata": {
      "model": "gpt-3.5-turbo-16k",
      "user_id": "2947451"
    }
  }
}

Example Response

{
    "status": "ok",
    "data": {
        "id": "custom_id"
    }
}

Last updated