Chat completions, code security scanning, code generation. Drop-in replacement for OpenAI. Free tier with 100 requests/day.
OpenAI-compatible chat completions. Drop in as GPT-4 replacement across multiple model tiers.
Security scanning for code. OWASP Top 10, injection attacks, CVE scanning with fix suggestions.
Generate production-quality code from descriptions. Backed by 251K real code patterns.
Search 256K+ patterns with semantic similarity using FAISS vector index (210K vectors).
Send broken code, get a fix back. Multi-model consensus with AST validation.
16-domain confidence scores, knowledge graph traversal, pattern intelligence.
Terminal coding assistant. Chat, generate, scan, review — powered by NeuronX.
AI chat sidebar, code generation, explain & fix selection, security scan on save.
One API key, all products. No SDK required — standard REST.
No credit card. 100 chat + 50 security scans per day, forever.
Use curl, OpenAI SDK, LangChain, or any HTTP client.
AI features without managing model infrastructure.
# Chat completions — OpenAI-compatible curl -X POST https://neuronx.jagatab.uk/v1/chat/completions \ -H "Authorization: Bearer nx-YOUR_KEY" \ -H "Content-Type: application/json" \ -d '{"model":"neuronx-smart","messages":[{"role":"user","content":"Hello!"}]}' # Use with OpenAI Python SDK — change only base_url import openai client = openai.OpenAI(api_key="nx-YOUR_KEY", base_url="https://neuronx.jagatab.uk/v1") resp = client.chat.completions.create(model="neuronx-smart", messages=[{"role":"user","content":"Hello!"}]) print(resp.choices[0].message.content) # Security scan curl -X POST https://neuronx.jagatab.uk/v1/scan \ -H "X-Api-Key: nx-YOUR_KEY" \ -H "Content-Type: application/json" \ -d '{"code":"import subprocess\nsubprocess.run(user_input, shell=True)","filename":"app.py"}'
Test the Chat API directly. Add your key for full access.
Click Run to see response...
No credit card. 100 chat + 50 security scans per day, forever free.
| Tier | Chat API | Security Scans | Max Tokens | Price |
|---|---|---|---|---|
| Free | 100/day | 50/day | 2,048 | $0 |
| Pro | 5,000/day | 1,000/day | 8,192 | $9/mo |
| Team | Unlimited | Unlimited | 32,768 | $49/mo |
| Model | Best For | Speed | GPT Alias |
|---|---|---|---|
| neuronx-fast | Simple queries, chatbots | Fastest | gpt-3.5-turbo |
| neuronx-smart | Reasoning, analysis | Fast | gpt-4o |
| neuronx-code | Code generation, debugging | Fast | — |
| neuronx-72b | Complex coding tasks | Slower | gpt-4-turbo |