Skip to content
EndueEndue
Docs

Conversations

A conversation is a persistent thread with one agent. It holds the history the agent reads for context, and it survives closing the app.

A conversation is the default way to work with an agent. Start a new one when the subject changes; keep using an existing one while you are still on the same body of work.

At the start of every run, the agent assembles its context from the conversation it is in — plus its prompt, its relevant memories, and, if the conversation belongs to one, the project’s context.

It does not read your other conversations. Two threads with the same agent are independent; anything the agent should carry between them belongs in memory or in the project.

Start a new conversationContinue the existing one
The topic changedYou are refining the same result
The thread is long and full of dead endsThe earlier history is what makes the answer good
You want a clean comparison while iteratingThe agent is mid-task

Long threads are not free: everything in them competes for the model’s attention, and eventually for its context window. A thread that has wandered through three subjects produces worse answers than three focused threads.

Conversations are listed by recency, so the thread you were in is the one at the top. Opening it restores the full history, including the tool calls each run made.

Work continues while you are away. If you close the app during a run, the run keeps going on the server; when you come back, the result is in the thread. See Runs.

A workspace accumulates threads. Four things keep the list usable:

  • Search looks through titles and message bodies, so you can find a conversation by something said in it rather than by what it was called.
  • Pin keeps a conversation at the top of the list — the one you return to daily.
  • Rename replaces the title Endue generated from your first message. Titles are a summary, not a label you chose, so renaming is worth it for the ones you keep.
  • Archive takes a finished conversation out of the list without deleting it. Archived threads stay searchable and can be reopened; the sidebar stops showing them.

Copy link puts a link to the conversation on your clipboard. It is a bookmark for you, not a share — opening it requires your account.

When several conversations concern the same body of work, put them in a project. An agent working inside a project reads the project’s context, which is the cheapest way to stop re-explaining background in every thread.

  • A conversation cannot be moved to a different agent.
  • Agents do not read each other’s conversations, and the same agent does not read across its own threads.
  • Very long threads eventually exceed the model’s context window; the practical fix is a new conversation, with anything durable moved into memory or the project.