v0.14.0
Developer Hub v0.14
Build on the
Neural Engine.
Cortex is not just a chatbot; it's a runtime for intelligence. We invite you to extend its capabilities by connecting your own infrastructure directly to the cognitive loop.
Your Journey
The "No-SDK" Philosophy
We believe in zero lock-in. Cortex Plugins are just web servers. If you can handle a JSON POST request, you can build a plugin. No proprietary libraries, no version conflicts, no language restrictions.
- Any Language (Node, Go, Python, Rust)
- Any Infrastructure (Lambda, Vercel, EC2)
- Standard HTTP/1.1
server.logbash
# The Platform calls your standard endpoint
> POST /tools/calculate_loan HTTP/1.1
> Host: api.your-fintech.com
> Authorization: Bearer <signed_jwt>
# You return standard JSON
< HTTP/1.1 200 OK
< Content-Type: application/json
< {"approved": true, "rate": 5.4}