the short answer
Yes. Galileo's docs state that "Luna-2 is only available in the Enterprise tier", and Splunk Agent Observability's docs, which replaced them in August 2026, say the same. Luna-2 is a pair of small evaluation models, 3B and 8B, fine-tuned from Llama and listed at $0.02 per million tokens. On Free and Pro, cheaper judging comes from code checks first, sampling, smaller judge models you host, and shorter judge prompts.
- Availability
- Enterprise tier only, per Galileo and Splunk docs.
- Sizes
- 3B and 8B, fine-tuned from Llama.
- Listed rate
- $0.02 per million tokens.
- Custom Luna-2 evaluators
- Luna Studio fine-tuning, also Enterprise, deployed into your own cluster or cloud.
The Evidence
Galileo's Luna-2 overview says it plainly: "Luna-2 is only available in the Enterprise tier of Galileo." The release note that introduced the models, dated 18 June 2025, read "Luna-2 is now available for Enterprise Customers". After the product became Splunk Agent Observability on 7 August 2026, Splunk's copy of the docs kept the line: "Luna-2 is only available in the Enterprise tier."
The pricing page is consistent with that. It does not mention Luna-2 on any plan, and it lists low-latency dedicated inference servers and real-time guardrails under Enterprise only. Galileo's Protect docs explain why the gating matters beyond cost: runtime protection "either requires Luna-2 on the enterprise tier of Galileo, or custom code-based metrics", because a check on the hot path needs a fast model.
What Luna-2 Is
Luna-2 is Galileo's family of small language models built for one job: running evaluation metrics fast and cheaply enough to score every trace rather than a sample. The docs describe 3B and 8B variants fine-tuned from Llama, a listed rate of $0.02 per million tokens, and latency that depends on hardware and request size - about 15 milliseconds for a small request on H100-class GPUs, and over a second for a 100,000-token input. Luna-2 "works with most of the out of the box metrics" and supports custom LLM-as-a-judge metrics.
Two related pieces are Enterprise as well. Luna Studio, "the self-service fine-tuning web app for Luna-2 custom evaluators", is part of the enterprise tier and is deployed into your own cluster or cloud. And although open-source Agent Control lists Galileo's Luna among its pluggable evaluators, the controls are free and the Luna-2 models behind that evaluator are not.
Luna-2 gives Galileo customers a vendor-maintained judge model tuned for its evaluation metrics at a low published token rate. It is most relevant to Enterprise teams scoring large volumes of production traces, where general-purpose judge models become a meaningful cost and latency burden.
Other Ways to Judge Cheaply
Without Luna-2 - on Galileo Free or Pro, or on any other platform - the cost of LLM judging comes down through four levers, roughly in this order.
- Code checks first. Many "judgments" are not judgments: did a tool call error, did the agent exceed a step budget, touch a file it should not, return valid JSON. Deterministic checks cost nothing per call and never disagree with themselves. Keep the model for semantic questions such as groundedness or tone.
- Sample. Judging 10% of sessions cuts judge calls tenfold, and a recurring failure still shows up in the sample. Oversample what the code checks flag, and where your platform lets you, key the sample on a session identifier so a rerun lands in the same bucket.
- A smaller judge you host. An open-weight model on your own GPUs trades per-token fees for infrastructure. It pays off at high, steady volume, and it needs calibrating against human labels before you trust its scores.
- Shorter prompts. Give the judge the part of the transcript its criterion needs - the final answer and retrieved context for groundedness, the tool events for tool use - rather than the whole session.
Reduce LLM judge cost works through the arithmetic, and LLM judge vs code-based evaluator covers where the line between the first two levers sits.
How Failproof AI Handles Judge Cost
Failproof AI does not provide a proprietary judge model like Luna-2. It supports code-based evaluations, LLM judges, prebuilt policy packs and the evaluation suite your team already uses. Deterministic checks handle failures such as tool errors, step limits and malformed output without consuming judge tokens, leaving model-based evaluation for behavior that needs semantic judgment.
The evaluations feed a broader failure-intelligence workflow. Failproof analyzes results across production sessions, groups related evidence into findings, recommends fixes and alerts owners. Teams can reduce model cost through sampling and shorter judge inputs, then use the resulting findings to decide which deterministic checks or behavioral policies should run continuously.
When None of This Matters
At a few thousand short sessions a month, a general-purpose judge may cost less than the engineering effort required to host and calibrate a smaller model. Start by measuring the token bill and judge accuracy. Sampling or self-hosted models become useful when evaluation spend is material or latency limits how much production traffic you can score.
FAQ
Can I use Luna-2 on Galileo Pro?
No. Galileo's docs say Luna-2 is only available in the Enterprise tier, and the pricing page mentions no Luna-2 access on Free or Pro. Free and Pro include Galileo's evaluations, with unlimited custom evals on Free, but Luna-2, Luna Studio fine-tuning and the low-latency dedicated inference servers come with Enterprise.
How much does Luna-2 cost?
Galileo's Luna-2 docs list $0.02 per million tokens. Because Luna-2 is Enterprise-only, that rate sits inside an Enterprise contract whose price is not published, so when you get a quote ask how Luna-2 usage is billed: included, metered at the listed rate, or tied to dedicated inference servers.
Is there an open-source alternative to Luna-2?
Not a like-for-like one, since Luna-2 is a vendor-tuned model paired with Galileo's metrics. Future AGI, whose platform is Apache-2.0, has its own judge models (TURING_LARGE, TURING_SMALL and TURING_FLASH). Any open-weight model you host can also act as a judge once you calibrate it against human labels on your own sessions.
Does Failproof AI have a Luna-2 equivalent?
Failproof AI does not provide a proprietary evaluation model equivalent to Luna-2. It runs code-based and LLM-based evaluations in the cloud, supports prebuilt policy packs and existing evaluation suites, and uses the results for automated failure analysis, findings and alerts.
Get Started
Failproof AI is free to start. It finds recurring failure modes across agent sessions using code-based and LLM-based evaluations, groups the evidence into findings, and recommends fixes. Bring the eval suite you already have, alert the right owner when behavior drifts, and turn a tested fix into a policy that prevents the failure from recurring. See pricing for the tiers.
Sources
Checked against each vendor's own site and docs on 2026-09-14. Products change; if a detail here is out of date, tell us at support@befailproof.ai.
- Galileo docs: Luna-2 overview
- Splunk Agent Observability docs: Luna-2
- Splunk Agent Observability docs: Luna Studio availability
- Galileo release notes
- Galileo pricing
- Galileo docs: Protect (deprecated)
- Future AGI docs: evaluation models
- Failproof AI docs: Evaluations