> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tensorpro.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Sessions and projects

> Organize memory into sessions and projects.

## Overview

Sessions are conversations and projects are named workspaces that group
sessions and sources. Together they scope memory: a project-scoped request only
draws on that project's records, which is what makes honest abstention possible.

## Session endpoints

<CardGroup cols={2}>
  <Card title="List sessions" icon="list" href="/api-reference/list-sessions">
    List sessions.
  </Card>

  <Card title="Create session" icon="plus" href="/api-reference/create-session">
    Create a session.
  </Card>

  <Card title="Update session" icon="pen" href="/api-reference/update-session">
    Update a session.
  </Card>

  <Card title="Delete session" icon="trash" href="/api-reference/delete-session">
    Delete a session.
  </Card>

  <Card title="Session messages" icon="comments" href="/api-reference/list-session-messages">
    List and append session messages.
  </Card>

  <Card title="Assign to project" icon="folder-tree" href="/api-reference/assign-session-project">
    Assign a session to a project.
  </Card>
</CardGroup>

## Project endpoints

<CardGroup cols={2}>
  <Card title="List projects" icon="list" href="/api-reference/list-projects">
    List projects.
  </Card>

  <Card title="Create project" icon="plus" href="/api-reference/create-project">
    Create a project.
  </Card>

  <Card title="Update project" icon="pen" href="/api-reference/update-project">
    Update a project.
  </Card>

  <Card title="Delete project" icon="trash" href="/api-reference/delete-project">
    Delete a project.
  </Card>

  <Card title="Project sources" icon="file-lines" href="/api-reference/list-project-sources">
    List and manage project sources.
  </Card>

  <Card title="Project instructions" icon="sliders" href="/api-reference/get-project-instructions">
    Read and update project instructions.
  </Card>
</CardGroup>

<Note>
  A fuller sessions and projects tutorial is coming. The endpoint pages above
  document every field and let you try each call.
</Note>
