Project-M LLM Overview
Project-M LLM is an OpenAI-compatible gateway that lets your applications call Chinna AI and configured model providers through a single API interface.
What it does
Applications can send prompts, system instructions, messages, and model names to Project-M. The gateway then routes requests to the configured backend model layer. This allows a single app to use local models, code models, multimodal models, OCR models, embeddings, and paid providers without rewriting application logic.
Core endpoint
POST https://api.itsmechinna.com/v1/chat/completions
This endpoint follows the OpenAI chat completions shape so most AI clients can be adapted by changing the base URL and API key.
Request shape
{
"model": "chinna",
"messages": [
{ "role": "system", "content": "You are a helpful assistant inside my app." },
{ "role": "user", "content": "Write a welcome message for my dashboard." }
],
"temperature": 0.7,
"stream": false
}