flame
flame copied to clipboard
A distributed system for Agentic AI
**Motivation** Currently, Flame is using SQLite for the storage. But the performance of SQLite is not good enough for multi-thread read/write, including frontend/backend/scheduling. As Flame has specific data struct, we'd...
**Motivation** Add events into storage and record events for ssn/tasks status updated. **Function Specification** 1. Add events table into sqlite. 2. Record events when update ssn/tasks status. **Solutions** N/A **Additional...
**Motivation** It's better to support events of all kind of Flame, e.g. app, ssn and tasks to improve the debugability. **Function Specification** Add a `record_event` function in storage model to...
**Motivation** When running Agent, it's usually reported task status during execution, e.g. reasoning process. It's not the part of result, but it's import for the end user to understand the...
**Motivation** Currently, Flame will create a session when chatting with Agent. If there're multi-agents or MCP tool call, it's hard to group the sessions for debug, analysis and so on....