Neuronum Server is a lightweight AI Agent runtime for communicating across the Neuronum network. Plug your Agent into it and start automating your tasks through conversational Agent-to-Agent and Agent-to-Client connections
⚠️ Development Status: The Neuronum SDK is currently in beta and is not production-ready. It is intended for development, testing, and experimental purposes only. Do not use in production environments or for critical applications.
- Python >= 3.8
Follow these steps to get the neuronum-server running:
- Clone the repository:
git clone https://github.com/neuronumcybernetics/agent-server
cd agent-server- Install the Neuronum SDK:
pip install neuronum-
Set up your Cell (your digital identity on the Neuronum network):
- If you don't have a Cell yet:
neuronum create-cell
- If you already have a Cell and want to connect it to this device:
neuronum connect-cell
-
Install the server dependencies:
pip install -r requirements.txt-
Configure your OpenAI-compatible API key:
- Edit `.env` and set your `CLIENT_API_KEY` (and optionally `MODEL_BASE_URL` and `MODEL_NAME`):Supported providers include OpenAI, Groq, OpenRouter, or any OpenAI-compatible endpoint.
-
Start the server:
python server.pyVisit the Neuronum Docs for the complete SDK reference.
