Neuronum SDK
Project description
Neuronum SDK
Getting Started with the Neuronum SDK
In this brief getting started guide, you will:
- Connect to Neuronum
- Deploy with Neuronum Agent
- Call your Agent / Client APIs
- Create & Manage a Custom Tool
About the Neuronum SDK
The Neuronum SDK is a ready-to-use E2EE data infrastructure to self-host your favorite AI model as agentic backend for the Neuronum client (kybercell) and your own custom clients
Requirements
- Python >= 3.8
- A Community or Business Cell (secure identity)
Connect To Neuronum
Installation
pip install neuronum
Create a Neuronum Cell
The Neuronum Cell is your secure identity to interact with the Network
neuronum create-cell
Connect your Cell
neuronum connect-cell
Deploy with Neuronum Agent
Neuronum Agent is an agent-wrapper that transforms your model into an agentic backend server that can interact with the Neuronum Client (download kybercell) and your custom clients
Requirements
- Python 3.8+
- CUDA-compatible GPU (required for vLLM)
- CUDA Toolkit installed
Quick Start (Recommended)
The easiest way to set up and run the agent is using the CLI:
neuronum run-agent
This interactive command will:
- Clone the neuronum-agent repository
- Configure the agent with your Cell mnemonic
- Let you choose the LLM model
- Optionally configure advanced settings
- Create a virtual environment
- Install all dependencies
- Start the vLLM server in the background
- Launch the agent
Manual Setup
Alternatively, you can set up the agent manually:
- Clone the Agent Repository
git clone https://github.com/neuronumcybernetics/neuronum-agent.git
cd neuronum-agent
- Configure the Agent
Edit the agent.config file and set your Cell mnemonic:
MNEMONIC = "your twelve word mnemonic phrase here"
You can also customize other settings like:
VLLM_MODEL_NAME- LLM model to use (default: Qwen/Qwen2.5-3B-Instruct)MODEL_MAX_TOKENS,MODEL_TEMPERATURE,MODEL_TOP_P- LLM parametersDB_PATH- SQLite database location for memory and knowledge storage
- Choose Your Setup Method
Option A: Automated Setup Script (Recommended)
Run the automated setup script:
./setup.sh
This script will automatically:
- Create a Python virtual environment
- Install all dependencies
- Start the vLLM server in the background
- Launch the agent
Option B: Step-by-Step Manual Setup
If you prefer to run each step manually:
- Create and activate a virtual environment:
python3 -m venv venv
source venv/bin/activate
- Install dependencies:
pip install -r requirements.txt
- Start the vLLM server (in a separate terminal):
python start_vllm_server.py
- Run the agent:
python agent.py
What the Agent Does
Once running, the agent will:
- Connect to the Neuronum network using your Cell credentials
- Initialize a local SQLite database for conversation memory and knowledge storage
- Auto-discover and launch any MCP servers placed in the
tools/directory - Start processing messages from the network
- Execute scheduled tasks defined in the
tasks/directory
Stopping the Agent
To gracefully stop the agent and vLLM server:
neuronum stop-agent
This command will:
- Find and stop the running agent.py process
- Stop the vLLM server running in the background
- Clean up PID files
- Allow you to confirm before stopping each process
Call your Agent
Communicate with your Agent using Neuronum Transmitters (TX) with different message types
import asyncio
from neuronum import Cell
async def main():
async with Cell() as cell:
# ============================================
# Example 1: Send a prompt to your Agent
# ============================================
prompt_data = {
"type": "prompt",
"prompt": "Explain what a black hole is in one sentence"
}
tx_response = await cell.activate_tx(prompt_data)
print(tx_response)
# ============================================
# Example 2: Call a Tool with natural language
# ============================================
tool_call_data = {
"type": "call_tool",
"tool_id": "your-tool-id", # The tool you want to use
"prompt": "Send an email to john@example.com with subject 'Meeting' and body 'See you at 3pm'"
}
tx_response = await cell.activate_tx(tool_call_data)
print(tx_response)
# ============================================
# Example 3: Knowledge Management
# ============================================
# Add knowledge to agent's database
add_knowledge_data = {
"type": "add_knowledge",
"knowledge_topic": "Company Policy",
"knowledge_data": "Our company operates from 9 AM to 5 PM Monday through Friday."
}
tx_response = await cell.activate_tx(add_knowledge_data)
# Update existing knowledge
update_knowledge_data = {
"type": "update_knowledge",
"knowledge_id": "12345", # ID from previous add
"knowledge_data": "Updated: Company operates 8 AM to 6 PM Monday through Friday."
}
tx_response = await cell.activate_tx(update_knowledge_data)
# Fetch all knowledge
fetch_data = {"type": "fetch_all_knowledge"}
knowledge_list = await cell.activate_tx(fetch_data)
print(knowledge_list)
# Delete knowledge
delete_knowledge_data = {
"type": "delete_knowledge",
"knowledge_id": "12345"
}
tx_response = await cell.activate_tx(delete_knowledge_data)
# ============================================
# Example 4: Tool Management
# ============================================
# Get all installed tools and tasks
get_tools_data = {"type": "get_tools"}
tools_info = await cell.activate_tx(get_tools_data)
print(tools_info)
# Add a tool (requires tool to be published)
# Use stream() instead of activate_tx() to listen for agent restart
add_tool_data = {
"type": "add_tool",
"tool_id": "019ac60e-cccc-7af5-b087-f6fcf1ba1299"
}
await cell.stream(cell.host, add_tool_data)
# Agent will restart and send "ping" when ready
# Delete a tool
delete_tool_data = {
"type": "delete_tool",
"tool_id": "019ac60e-cccc-7af5-b087-f6fcf1ba1299"
}
await cell.stream(cell.host, delete_tool_data)
# ============================================
# Example 5: Task Scheduling (Automated Workflows)
# ============================================
# Add a scheduled task
add_task_data = {
"type": "add_task",
"name": "Daily Report",
"description": "Send daily summary email",
"tool_id": "email-tool-id",
"function_name": "send_email",
"input_type": "prompt", # or "static"
"input_data": "Send daily summary to manager@company.com",
"schedule": "weekdays@1704067200,1704153600" # Days@Unix timestamps
}
await cell.stream(cell.host, add_task_data)
# Delete a task
delete_task_data = {
"type": "delete_task",
"task_id": "task-uuid-here"
}
await cell.stream(cell.host, delete_task_data)
# ============================================
# Example 6: Agent Status & Logs
# ============================================
# Check if agent is running
status_data = {"type": "get_agent_status"}
status = await cell.activate_tx(status_data)
print(status) # Returns: {"json": "agent running"}
# Download agent logs
log_data = {"type": "download_log"}
logs = await cell.activate_tx(log_data)
print(logs["json"]["log"]) # Full log content
if __name__ == '__main__':
asyncio.run(main())
Create a Tool
Neuronum Tools are MCP-compliant (Model Context Protocol) plugins that extend your Agent's functionality, enabling it to interact with external data sources and systems.
Initialize a Tool
neuronum init-tool
You will be prompted to enter a tool name and description (e.g., "Test Tool" and "A simple test tool"). This will create a new folder named using the format: Tool Name_ToolID (e.g., Test Tool_019ac60e-cccc-7af5-b087-f6fcf1ba1299)
This folder will contain 2 files:
- tool.config - Configuration and metadata for your tool
- tool.py - Your Tool/MCP server implementation
Example tool.config:
{
"tool_meta": {
"tool_id": "019ac60e-cccc-7af5-b087-f6fcf1ba1299",
"version": "1.0.0",
"name": "Test Tool",
"description": "A simple test tool",
"audience": "private",
"logo": "https://neuronum.net/static/logo_new.png"
},
"legals": {
"terms": "https://url_to_your/terms",
"privacy_policy": "https://url_to_your/privacy_policy"
},
"requirements": [],
"variables": []
}
Example tool.py:
from mcp.server.fastmcp import FastMCP
# Create server instance
mcp = FastMCP("simple-example")
@mcp.tool()
def echo(message: str) -> str:
"""Echo back a message"""
return f"Echo: {message}"
if __name__ == "__main__":
mcp.run()
Update a Tool
After modifying your tool.config or tool.py files, submit the updates using:
neuronum update-tool
Delete a Tool
neuronum delete-tool
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file neuronum-2025.12.0.dev1.tar.gz.
File metadata
- Download URL: neuronum-2025.12.0.dev1.tar.gz
- Upload date:
- Size: 23.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67e41fc23a947c7ba2e8fce649e065af07443ab22a90415a4bb2d1a8e30c05da
|
|
| MD5 |
2600164fcfa5dc282f4dda6a4267b8cd
|
|
| BLAKE2b-256 |
2ef9b09867d4be2e9a150d3b4fbbc0163c23e91f2f77c4644a07f9ceae494d37
|
File details
Details for the file neuronum-2025.12.0.dev1-py3-none-any.whl.
File metadata
- Download URL: neuronum-2025.12.0.dev1-py3-none-any.whl
- Upload date:
- Size: 21.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c78cb696bfa461baae06139d52a74436a45e5414d8bb71d46a0961646c5d7f5
|
|
| MD5 |
2947782bfadbd4181906a296adde1233
|
|
| BLAKE2b-256 |
21ee2e8897b0fa5965f8e250a5aea35443599f98306c5a803195cc8931a3cdf6
|