luisAI Proxy API
Free AI chat API — wraps Groq, OpenRouter, and Cloudflare Workers AI. No API key required.
POST /api/chat
Send a chat request. Returns JSON or streaming SSE.
curl https://ollama-cloud.luishae0701.workers.dev/api/chat \
-H "Content-Type: application/json" \
-d '{
"model": "groq/llama-3.3-70b-versatile",
"messages": [{"role": "user", "content": "Hello!"}],
"stream": false
}'
Available Models
Loading...
Parameters
| Field | Type | Description |
|---|---|---|
| model | string | Model name (see list above). Default: @cf/meta/llama-3.3-70b-instruct-fp8-fast |
| messages | array | Chat messages [{role, content}] |
| stream | boolean | Enable SSE streaming (default: false) |
Other Endpoints
POST /api/mini-ask
Knowledge-base powered Q&A with AI fallback
curl .../api/mini-ask -d '{"question":"What is quantum computing?"}'
POST /api/code-ask
Code-specific knowledge base
curl .../api/code-ask -d '{"question":"binary search","lang":"Python"}'
GET /api/tags
List all available models
Pricing
| Tier | Rate Limit | Models |
|---|---|---|
| Free | 30 req/min | All models |
No API key needed. Just start sending requests. Rate limits may apply.