Zep.Schemas.Thread (Zep v1.0.0)

Copy Markdown View Source

A Zep thread - a sequence of messages between a user and an assistant.

thread_id is the caller-supplied identifier; uuid is Zep's internal row identifier. See the "Threads" concept guide for how thread-scoped messages relate to the user-level knowledge graph.

Summary

Types

t()

@type t() :: %Zep.Schemas.Thread{
  created_at: String.t() | nil,
  project_uuid: String.t() | nil,
  thread_id: String.t(),
  user_id: String.t() | nil,
  uuid: String.t() | nil
}