This section is about the TellusR Assistants module. Here you can define assistants — LLM-powered chat agents that answer questions using the content of your projects. Each assistant combines a retrieval setup, an LLM, a set of tools and instructions into one configurable unit.

The Docker service for this module is called tellusr-dialogue. It orchestrates the conversation:
it retrieves content through the Retrieval module, calls the configured LLM provider, and records
the full trace of every answer.
flowchart LR
D["tellusr-dialogue"] --> F["tellusr-flow (retrieval pipelines)"]
D --> L["LLM providers (OpenAI, Azure, Anthropic, local, ...)"]
D --> P["PostgreSQL (configuration, history)"]