Documentation Index
Fetch the complete documentation index at: https://docs.flowyble.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
A Conversation is a sequence of agent runs sharing the same context. When conversation memory is enabled, each new message includes the full conversation history, allowing the agent to maintain context across turns.Creating conversations
Conversations are created automatically when you:- Use the Chat interface in the dashboard
- Send a message via the API with a
conversationId
How memory works
WhenEnableConversationMemory is enabled:
- The system loads all previous runs in the conversation
- User messages and agent responses are assembled into a message history
- The full history is sent to the LLM as part of the prompt
- The agent “remembers” everything discussed previously
Chat interface
The built-in Chat interface provides a familiar messaging experience:- Real-time streaming responses via SignalR
- Conversation history sidebar
- Support for multiple concurrent conversations
- Powered by a dedicated Chat system agent
Conversation management
- View history — browse all messages and agent responses
- Delete conversation — removes the conversation and all associated runs
- Export — download conversation data for analysis

