✅ Server Status: Running
We implement the best knowledge for your Vector robot so that you can have wonderful conversations with it.
We have tested hundreds of Large Language Models and with Vector robot selected a chosen few that work best with his personality.
Join as a paid subscriber to our newsletter at http://www.learnwitharobot.com and get an API Key for FREE.
📡 API Endpoint
POST /v1/chat/completions
This endpoint accepts OpenAI-compatible chat completion requests.
Wirepod configuration
Configure your Wirepod server according to the screenshot below:
Demonstration on a Vector Robot
With our knowledge, you can make your Vector robot answer questions like shown in the video below:
🔧 Sample API Request
Here's how to make an API request. Use this when you need to test our API.
curl -X POST "http://knowledge.learnwitharobot.com/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN_HERE" \
-d '{
"model": "sonar",
"messages": [
{
"role": "user",
"content": "Hello, how are you today?"
}
],
"max_tokens": 100,
"temperature": 0.7
}'
📋 Request Format
The API accepts standard OpenAI-compatible requests with the following structure: