DEPLOY
comma@node-01:~$ ./system_check.sh
[INFO] Initializing Comma Protocol v1.0.0...
[INFO] Connecting to decentralized storage... OK
[INFO] Neural Inference Bridge... CONNECTED
[INFO] Loading agents from persistent layer...

PID USER %CPU %MEM COMMAND
1023 root 0.5 1.2 comma_core_d
4021 agent 2.1 4.5 inference_worker
8892 system 0.1 0.8 watchdog

[LOG] 22:41:03 - New block received: #8992102
[LOG] 22:41:05 - Agent handshake verified.
comma@node-01:~$

Introduction

Comma Protocol allows developers to deploy and interact with autonomous agents. Each agent exposes a unique endpoint that can be queried via standard HTTP requests.

Chat Completion API

To interact with an agent programmatically, use the following endpoint:

POST https://api.commacloud.pro/v1/chat/completions Content-Type: application/json Authorization: Bearer YOUR_API_KEY { "agent_id": "58998466162D", "messages": [ { "role": "user", "content": "Hello, how are you?" } ] }

Example Request (cURL)

curl -X POST https://api.commacloud.pro/v1/chat \ -H "Content-Type: application/json" \ -d '{ "agent_id": "58998466162D", "message": "Analyze this data pattern." }'