Instructions to use thinkingmachines/Inkling-Small with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use thinkingmachines/Inkling-Small with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="thinkingmachines/Inkling-Small") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("thinkingmachines/Inkling-Small") model = AutoModelForMultimodalLM.from_pretrained("thinkingmachines/Inkling-Small", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Inference
- HuggingChat
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use thinkingmachines/Inkling-Small with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "thinkingmachines/Inkling-Small" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "thinkingmachines/Inkling-Small", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/thinkingmachines/Inkling-Small
- SGLang
How to use thinkingmachines/Inkling-Small with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "thinkingmachines/Inkling-Small" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "thinkingmachines/Inkling-Small", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "thinkingmachines/Inkling-Small" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "thinkingmachines/Inkling-Small", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use thinkingmachines/Inkling-Small with Docker Model Runner:
docker model run hf.co/thinkingmachines/Inkling-Small
Add community evaluation results for AIME_2026, GPQA, HLE, HMMT_FEB_2026, MMMU_PRO, SWE-BENCH_PRO, SWE-BENCH_VERIFIED
Browse filesThis PR adds community-provided evaluation results for the following benchmarks:
- **[AIME_2026](https://huggingface.co/datasets/MathArena/aime_2026?eval_result=thinkingmachines/Inkling-Small&leaderboard_task_id=MathArena/aime_2026)**
- **[GPQA](https://huggingface.co/datasets/Idavidrein/gpqa?eval_result=thinkingmachines/Inkling-Small&leaderboard_task_id=diamond)**
- **[HLE](https://huggingface.co/datasets/cais/hle?eval_result=thinkingmachines/Inkling-Small&leaderboard_task_id=hle)**
- **[HMMT_FEB_2026](https://huggingface.co/datasets/MathArena/hmmt_feb_2026?eval_result=thinkingmachines/Inkling-Small&leaderboard_task_id=MathArena/hmmt_feb_2026)**
- **[MMMU_PRO](https://huggingface.co/datasets/MMMU/MMMU_Pro?eval_result=thinkingmachines/Inkling-Small&leaderboard_task_id=mmmu_pro_standard_10_options)**
- **[SWE-BENCH_PRO](https://huggingface.co/datasets/ScaleAI/SWE-bench_Pro?eval_result=thinkingmachines/Inkling-Small&leaderboard_task_id=SWE_Bench_Pro)**
- **[SWE-BENCH_VERIFIED](https://huggingface.co/datasets/SWE-bench/SWE-bench_Verified?eval_result=thinkingmachines/Inkling-Small&leaderboard_task_id=swe_bench_%25_resolved)**
These results were extracted from the model card. This is based on the new [evaluation results feature](https://huggingface.co/docs/hub/eval-results).
*Note: This is an automated PR. Please review the evaluation results before merging.*
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
- dataset:
|
| 2 |
+
id: MathArena/aime_2026
|
| 3 |
+
task_id: MathArena/aime_2026
|
| 4 |
+
value: 95.5
|
| 5 |
+
source:
|
| 6 |
+
url: https://huggingface.co/thinkingmachines/Inkling-Small
|
| 7 |
+
name: Model Card
|
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
- dataset:
|
| 2 |
+
id: Idavidrein/gpqa
|
| 3 |
+
task_id: diamond
|
| 4 |
+
value: 89.5
|
| 5 |
+
source:
|
| 6 |
+
url: https://huggingface.co/thinkingmachines/Inkling-Small
|
| 7 |
+
name: Model Card
|
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
- dataset:
|
| 2 |
+
id: cais/hle
|
| 3 |
+
task_id: hle
|
| 4 |
+
value: 31.6
|
| 5 |
+
source:
|
| 6 |
+
url: https://huggingface.co/thinkingmachines/Inkling-Small
|
| 7 |
+
name: Model Card
|
| 8 |
+
notes: text only
|
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
- dataset:
|
| 2 |
+
id: MathArena/hmmt_feb_2026
|
| 3 |
+
task_id: MathArena/hmmt_feb_2026
|
| 4 |
+
value: 90.2
|
| 5 |
+
source:
|
| 6 |
+
url: https://huggingface.co/thinkingmachines/Inkling-Small
|
| 7 |
+
name: Model Card
|
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
- dataset:
|
| 2 |
+
id: MMMU/MMMU_Pro
|
| 3 |
+
task_id: mmmu_pro_standard_10_options
|
| 4 |
+
value: 74
|
| 5 |
+
source:
|
| 6 |
+
url: https://huggingface.co/thinkingmachines/Inkling-Small
|
| 7 |
+
name: Model Card
|
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
- dataset:
|
| 2 |
+
id: ScaleAI/SWE-bench_Pro
|
| 3 |
+
task_id: SWE_Bench_Pro
|
| 4 |
+
value: 55.9
|
| 5 |
+
source:
|
| 6 |
+
url: https://huggingface.co/thinkingmachines/Inkling-Small
|
| 7 |
+
name: Model Card
|
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
- dataset:
|
| 2 |
+
id: SWE-bench/SWE-bench_Verified
|
| 3 |
+
task_id: swe_bench_%_resolved
|
| 4 |
+
value: 80.2
|
| 5 |
+
source:
|
| 6 |
+
url: https://huggingface.co/thinkingmachines/Inkling-Small
|
| 7 |
+
name: Model Card
|