Setting Up INTELLI

Follow these steps to get INTELLI running on your machine after your subscription purchase.

1. Purchase & Receive Your Package

  • After subscribing, you’ll receive an email with your INTELLI package.
  • Save the package to your desired folder.

2. Install & Start the API

Open your terminal, navigate to the INTELLI folder, and run:

npm install

And after that:

npm start

  • INTELLI will boot up locally.
  • Check the terminal logs — if everything is up-to-date, you’ll see a “Server running on http://localhost:8081” message.

3. Authenticate with Your Token

All requests to INTELLI require a Bearer Token for authentication.

Replace your-token with the one you received in your email.

Example using cURL:

curl -X POST http://localhost:8081/api/chat \
-H "Authorization: Bearer " \
-H "Content-Type: application/json" \
-d '{
"model": "local-model",
"messages": [
{"role": "user", "content": "Hello"}
]
}'

Expected response:

{
"id": "chat-123",
"object": "chat.completion",
"created": 1690000000,
"choices": [
{
"index": 0,
"message": {"role": "assistant", "content": "Hi! How can I help you today?"}
}
]
}


4. Next Steps

  • ✅ INTELLI is now running locally!
  • Test more endpoints with Postman.
  • Build your first automation in n8n.