GETTING STARTED
Installation
Get started with Syra in your local environment. This guide covers prerequisites, installation methods, and initial setup.
Prerequisites
Before installing Syra, make sure your workstation has these core requirements.
- Python 3.10 or newer
- Node.js 18 or newer for the dashboard
- Git and a writable workspace directory
- Access to the API providers you plan to enable
Windows is supported. If you use PowerShell, prefer explicit environment variables over shell profile aliases for production setups.
Install Syra
Clone the repository, install Python dependencies, and start the local dashboard.
Clone and install
bash
git clone https://github.com/mukkuul976/Syra-Network.gitcd syrapip install -e .npm installAfter install, run
syra --version and npm run dev to confirm both the CLI and dashboard are available.Quick Start
Boot the server, define a network, create an agent, and dispatch your first task.
Start the server
bash
syra server start --port 8000 --host 0.0.0.0Create an agent
bash
syra agent create --name release-analyst --model gpt-4-turbo --network base-sepolia --role "Review changelogs and prepare rollout notes"Dispatch a task
bash
syra task create --agent release-analyst --prompt "Summarize today's deployment blockers"