All models
Inkling
thinkingmachines/inkling
Thinking Machines LLMChat
Thinking Machines' flagship reasoning model with an Anthropic-style API.
Quick start
# Inspect the price — a plain request returns the 402 challenge:
curl -i https://api.glianalabs.com/v1/chat/completions \
-H "content-type: application/json" \
-d '{
"model": "thinkingmachines/inkling",
"messages": [{"role": "user", "content": "<your message>"}],
"max_tokens": 0
}'
# Pay + run in one step with the mppx CLI (create a wallet: npx mppx account create):
npx mppx https://api.glianalabs.com/v1/chat/completions \
-J '{"model": "thinkingmachines/inkling", "messages": [{"role": "user", "content": "<your message>"}], "max_tokens": 0}'Parameters
Input
messages array required
max_tokens number required
system string optional
temperature number optional
top_p number optional
top_k number optional
stream boolean optional
metadata object optional
Output
Chat completion (OpenAI-compatible)