Neuro Server

Overview

This server provides chat and brain functionalities for the Neuro.

API Endpoints

Neuro Server

POST /chat

Send a chat message to the Neuro brain

Body:

{
  "cid": "conversation_id", // optional
  "text": "Your message here"
}
WS /ws/{cid}

WebSocket connection for real-time updates

Connect to this endpoint to receive events from the Neuro brain.

Using with CLI Client

Run the cli_client.py script to connect to this server:

python cli_client.py --host localhost --port 7000