Knowledge Assistants
Answer product, API, and internal knowledge questions from a controlled prompt flow.
Connect to the model using our REST API. You'll need an active API key from your dashboard.
curl https://api.techlauncher.in/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "",
"messages": [
{ "role": "system", "content": "You are a helpful assistant." },
{ "role": "user", "content": "Explain quantum computing in simple terms." }
],
"temperature": 0.7
}'| PARAMETER | TYPE | DESCRIPTION |
|---|---|---|
| No parameters available | ||
{
"id": "chatcmpl-123",
"object": "chat.completion",
"created": 1677652288,
"model": "",
"choices": [{
"message": {
"role": "assistant",
"content": "Quantum computing is..."
},
"finish_reason": "stop"
}],
"usage": { "requests": 1 }
}Answer product, API, and internal knowledge questions from a controlled prompt flow.
Generate structured responses that can move directly into tickets, tools, and dashboards.
Use scoped API keys to add model calls to secure customer or team-facing applications.
PRICING