Documentation Index
Fetch the complete documentation index at: https://docs.trynebula.ai/llms.txt
Use this file to discover all available pages before exploring further.
How Conversations Work
Conversations are stored as conversation memories. Create one withengram_type="conversation" and a messages list, then append more messages to the same memory_id over time.
engram_type="conversation": Marks the memory as a conversation (set onmemories.create).messages: A list of message objects, each withrole(user,assistant, orsystem) andcontent.memory_id: Theidreturned frommemories.create(). Pass it as the first argument tomemories.append()to add more messages.
Conversation memories contain the full message history. See Core Concepts for the memory/source model.
Creating and Adding Messages
Retrieving Conversations
Usememories.list() to retrieve conversations with their message chunks, or memories.retrieve() for a single conversation.
Next Steps
- Core Concepts - Understanding memories and sources
- Memory Operations - Store and search memories