A flexible open source distributed agentic framework designed to work at scale in business production workflow settings. The framework aims to allow users to specifiy fully orchestrated agentic flows without using any code.
"Deep Thought announced that the new machine would be so large, it would resemble a planet, and be of such complexity that organic life itself would become part of its operating matrix."
- Douglas Adams, Hitch Hikers Guide To The Galaxy
- Code free Graph (DAG) AI agentic framework to orchestrate business flows in production
- Fully deployable locally or at scale in the cloud
- Serverless implementation
- Agentic core supporting:
- Multi-RAG - RAG micro knowledge base on a per role basis
- In context (multi-shot) Learning - using semantic or lexical similarity
- Multi-agent session learning
- Using tools (API calling)
- Using specs (output specification formatting)
- Multi LLM support (LLM defined on a per role)
- GUI to help specify contextual and agentic flows
- HTML, PDF & Github import tools
- Full API to integrate with other systems/tools
- Backed by a distributed scalable database backend (ElasticSearch/CosmosDB)
- RAG search strategies can be lexical, semantic (vectorised), ontological (coming soon) and hybrid search strategies over RAG data
- 'No code' agentic flows
- Self documenting flows
- Observable - logging/monitoring
- Testable flows
- Deployable A/B
- Secure
- Open Source
- Serverless
- Framework will support the latest algorithmic understanding necessary to achieve best performance
This project is currently in a very early development/experimental stage.[!IMPORTANT]
Policy chatbot
Notice to mariners
Job posting agent
graph TD
Workflows --> Agents;
Workflows --> Contexts;
Workflows --> Connectors;
Agents --> Role;
Agents --> Inputs_Outputs;
Agents --> Input_Contexts;
Agents --> Input_Examples;
Agents --> Output_Connectors;
Role --> Description;
Role --> Expected_IO;
Role --> Spec;
Role --> Context_Link;
Role --> Examples_ICL;
Role --> Session;
Contexts --> Mini_Vector_DB;
Contexts --> Update_Triggers;
Contexts --> Examples;
Examples --> Context_Role_Def;
Examples --> DB_IO_Content;
Examples --> Loaders;
Loaders --> Load_Doc_Types;
Loaders --> Load_Sources;
Loaders --> Adaptors;
Adaptors --> Convert_Formats;
Adaptors --> Call_Service;
Connectors --> Send_Info;
Connectors --> Webhooks;
have:
- Agents
- Contexts
- Connectors
- Are defined as having a specific Role
- have inputs or outputs to/from other Agents
- can have input Contexts
- can have input Examples
- can have output connectors
- Role description, expected input, expected output
- Optional Spec - also known as a function call
- options link to a Context also known as Long Term Memory (LTM)
- Examples (in context learning) either simple text or from a RAG context
- Session for Short Term Memory (STM)
- have loaders (document loaders)
- are a type of mini vector DB
- can be triggered to update
- Load different types of documents e.g. pdf, text, xls etc
- Load from different sources e.g. S3 directory, github recursive
- Can have adaptors
- Adaptors convert from one file format to another e.g. HTML to TEXT
- Adaptors can call a service to convert from MP3 to TEXT
- are a kind of Context but for a specific role definition
- Can be a large database of input vs answer format content
- Describes a function to call and the specification for all the parameters
- Can also describe a JSON schema
- send recevied information to external services
- Are webhooks