NexusFlow.ai is a comprehensive agent orchestration platform that supports multiple AI frameworks (LangGraph, CrewAI, AutoGen, DSPy) through an adapter pattern.
NexusFlow uses a modular architecture with framework adapters that allow you to build flows using any supported orchestration framework.
- Multi-Framework Support: Build flows using LangGraph (fully supported in MVP), with basic support for CrewAI, AutoGen, and DSPy
- Visual Flow Designer: Drag-and-drop interface for creating agent workflows
- Flexible Tool Integration: Register, configure, and use custom tools within your flows
- Execution Monitoring: Track and visualize execution paths with real-time updates
- Flow Deployment: Deploy flows as API endpoints for production use
NexusFlow includes a built-in tool registry that allows you to:
- Register custom tools that can be used across different frameworks
- Test tools individually before integrating them into flows
- Manage tool compatibility with different frameworks
- Configure framework-specific settings for each tool
In addition to the database and API key settings, you can configure:
DISABLE_AUTH=true
- Disables authentication for local developmentUSE_MOCK_TOOLS=true
- Uses mock implementations for tools without API keysALLOW_CODE_EXECUTION=false
- Controls whether code execution tools are enabledREACT_APP_USE_MOCK_API=true
- Enables mock API mode in the frontend
- Python 3.9 or newer
- Node.js 16 or newer
- PostgreSQL 13 or newer
-
Clone the repository:
git clone https://github.com/yourusername/nexusflow.git cd nexusflow
-
Set up a Python virtual environment:
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
-
Install Python dependencies:
cd backend pip install -r requirements.txt
-
Configure your environment variables:
cp .env.example .env # Edit .env with your PostgreSQL and API keys
-
Initialize the database:
alembic upgrade head
-
Run the backend development server:
python run.py
The API will be available at
http://localhost:8000
.
-
Navigate to the frontend directory:
cd ../frontend
-
Configure your environment variables:
cp .env.example .env # Edit .env if needed (REACT_APP_API_URL=http://localhost:8000/api)
-
Install dependencies:
npm install
-
Start the development server:
npm start
The frontend will be available at
http://localhost:3000
.
During development, you can use the mock API mode to work without a backend:
- Set
REACT_APP_USE_MOCK_API=true
in your.env
file - Or toggle mock mode in the login screen
cd backend
pytest
cd frontend
npm test
The primary framework supported in the MVP. To use LangGraph with NexusFlow:
- Install LangGraph:
pip install langgraph
- Configure your OpenAI API key in
.env
- Create a new flow and select LangGraph as the framework
- Add agents and tools to your flow
- Configure agent roles and relationships
- Test and deploy your flow
Additional frameworks will be fully supported in future releases. Basic integration is available in the MVP.
-
Build and start the containers:
docker-compose up -d
-
Access the application at
http://localhost:3000
For production environments, we recommend:
- Setting up a proper PostgreSQL database
- Using HTTPS for all communications
- Implementing proper user authentication
- Setting up monitoring and logging
- Deploying behind a reverse proxy like Nginx
Please see CONTRIBUTING.md for details on how to contribute to NexusFlow.
This project is licensed under the MIT License - see the LICENSE file for details.