Infermatic: Mistral Nemo Inferor 12B

infermatic/mn-inferor-12b

Created Nov 13, 202416,384 context
$0.8/M input tokens$1.2/M output tokens

Providers for Mistral Nemo Inferor 12B

OpenRouter routes requests to the best providers that are able to handle your prompt size and parameters, with fallbacks to maximize uptime.

Context
16K
Max Output
4K
Input
$0.8
Output
$1.2
Latency
2.06s
Throughput
15.29t/s

Apps using Mistral Nemo Inferor 12B

Top public apps this week using this model

1.
Favicon for https://character-tavern.com/
Character Tavern
Uncensored character chat
45.7M tokens
2.
Favicon for https://sillytavern.app/
SillyTavern
LLM frontend for power users
2.3M tokens
3.
Favicon for https://openrouter.ai/chat
OpenRouter: Chatroom
Chat with multiple LLMs at once
420K tokens
4.
Favicon for https://chub.ai/
Chub AI
GenAI for everyone
251K tokens
5.
Favicon for https://apipie.ai/
107K tokens
6.
Favicon for https://roocode.com/
Roo Code
A whole dev team of AI agents in your editor
85K tokens
7.
Favicon for https://art-from-the-machine.github.io/
Mantella
Skyrim & Fallout 4 mod, naturally speak to NPCs
69K tokens
8.
Favicon for https://bothub.chat/
30K tokens
9.
Favicon for https://www.nexusmods.com/skyrimspecialedition/mods/126330
CHIM
AI framework for Skyrim
28K tokens
10.
Favicon for https://writingmate.ai/
24K tokens
11.
Favicon for https://www.layla-network.ai/
Layla
Private, personal AI
16K tokens
12.
Favicon for https://janitorai.com/
13K tokens
13.
Favicon for https://lite.koboldai.net/
11K tokens
14.
Favicon for https://github.com/MatthewSabia/n8n-nodes-openrouter
8K tokens
15.
Favicon for https://openwebui.com/
Open WebUI
Extensible, self-hosted AI interface
7K tokens

Recent activity on Mistral Nemo Inferor 12B

Tokens processed per day

Dec 13, 2024Dec 21Dec 29Jan 6Jan 14Jan 22Jan 30Feb 7Feb 15Feb 23Mar 3Mar 11055M110M165M220M

Uptime stats for Mistral Nemo Inferor 12B

Uptime stats for Mistral Nemo Inferor 12B on the only provider

Sample code and API for Mistral Nemo Inferor 12B

OpenRouter normalizes requests and responses across providers for you.

OpenRouter provides an OpenAI-compatible completion API to 300+ models & providers that you can call directly, or using the OpenAI SDK. Additionally, some third-party SDKs are available.

In the examples below, the OpenRouter-specific headers are optional. Setting them allows your app to appear on the OpenRouter leaderboards.

from openai import OpenAI

client = OpenAI(
  base_url="https://openrouter.ai/api/v1",
  api_key="<OPENROUTER_API_KEY>",
)

completion = client.chat.completions.create(
  extra_headers={
    "HTTP-Referer": "<YOUR_SITE_URL>", # Optional. Site URL for rankings on openrouter.ai.
    "X-Title": "<YOUR_SITE_NAME>", # Optional. Site title for rankings on openrouter.ai.
  },
  extra_body={},
  model="infermatic/mn-inferor-12b",
  messages=[
    {
      "role": "user",
      "content": "What is the meaning of life?"
    }
  ]
)
print(completion.choices[0].message.content)

Using third-party SDKs

For information about using third-party SDKs and frameworks with OpenRouter, please see our frameworks documentation.

See the Request docs for all possible fields, and Parameters for explanations of specific sampling parameters.

    Mistral Nemo Inferor 12B - API, Providers, Stats | OpenRouter