changelog / post
Inkling available on Baseten
You can start sending requests to Inkling today through our Model APIs by calling the OpenAI-compatible endpoint with your Baseten API key. For larger workloads, dedicated deployments are available.
Inkling is Thinking Machines Lab's open-weights multimodal model, built for breadth: it accepts text, image, and audio inputs, the first model on our Model APIs with audio support.
1curl -X POST https://inference.baseten.co/v1/chat/completions \
2 -H "Authorization: Bearer $BASETEN_API_KEY" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "model": "thinkingmachines/inkling",
6 "messages": [{
7 "role": "user",
8 "content": [
9 {"type": "text", "text": "Summarize what is said in this recording."},
10 {"type": "audio_url", "audio_url": {
11 "url": "https://huggingface.co/datasets/Xenova/transformers.js-docs/resolve/main/jfk.wav"
12 }
13 }
14 ]
15 }]
16 }'For more information and to get started, see our docs.