LLM·Dex
Open weightsOtheropentextvision

Molmo 72B

Allen AI's vision-language model, open everything (weights, data, training code).

Updated


Quick facts

Released
Sep 2024
Context
4K tokens
Output / 1M
Pricing not published
License
Apache-2.0

About Molmo 72B

Molmo 72B from Allen AI is one of the most thoroughly open releases, weights, training data, and code all published. Strong on natural-image tasks like photo description and pointing, lighter on dense documents than peers.

For reproducibility-focused research and projects that genuinely need to inspect or modify the training pipeline, Molmo is the most credible option in the multimodal open space.

Benchmarks

Published scores from Other's model card or independent leaderboards. We do not publish numbers we cannot source, see methodology.

HumanEval
,
Python coding pass@1
MMLU
,
Broad academic knowledge
GPQA
,
Graduate-level reasoning
SWE-bench
,
Real software-engineering tasks
Benchmark scores not yet available. We only publish numbers we can source from official model cards or independent leaderboards, see methodology.

Capabilities

Strengths

  • Fully open (data + code + weights)
  • Apache-2.0

Tracked weaknesses

  • Short 4k context
  • No hosted API

Pricing

Per-million-token rates as published by Other.

Per-token pricing not yet published for Molmo 72B. Check the official provider site for current tiers.

Call Molmo 72B from your code

Drop-in snippet for the Other SDK. Set your API key in the environment and run.

typescript
import OpenAI from "openai";

const client = new OpenAI({
  // Use OPENAI_API_KEY for OpenAI, or your provider's key + baseURL.
  apiKey: process.env.OPENAI_API_KEY,
});

const completion = await client.chat.completions.create({
  model: "molmo-72b",
  messages: [
    { role: "user", content: "What's the time complexity of quicksort?" },
  ],
});

console.log(completion.choices[0].message.content);

Compare Molmo 72B with…

Frequently asked

  • How much does Molmo 72B cost?
    Other has not published per-token API pricing for Molmo 72B at the time of writing. Check the official site for current pricing tiers, or compare against alternative models on LLMDex.
  • What is Molmo 72B's context window?
    Molmo 72B supports a context window of 4K tokens.
  • Is Molmo 72B open source?
    Molmo 72B ships with open weights under the Apache-2.0 license. You can self-host it, fine-tune it, and (subject to the license terms) deploy it commercially.
  • When was Molmo 72B released?
    Molmo 72B was released on Sep 25, 2024 by Other.
Friday digest

Intelligence, distilled weekly.

One short email every Friday, new model launches, leaderboard moves, and pricing drops. Curated by hand. Free, no spam.