OSS-first docs
These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.
Side-by-side comparison of AI model scores and capabilities.
Goal
Enable informed model selection through visual comparison.
Context
Used by Studio to compare two or more models across dimensions.
Source Definition
import { docId } from '../../docs/registry';
import type { DocBlock } from '../../docs/types';
import { definePresentation } from '../../presentations';
import {
PROVIDER_RANKING_DOMAIN,
PROVIDER_RANKING_OWNERS,
PROVIDER_RANKING_STABILITY,
PROVIDER_RANKING_TAGS,
} from '../constants';
export const ModelComparisonPresentation = definePresentation({
meta: {
key: 'provider-ranking.model.comparison',
title: 'Model Comparison',
version: '1.0.0',
description: 'Side-by-side comparison of AI model scores and capabilities.',
goal: 'Enable informed model selection through visual comparison.',
context: 'Used by Studio to compare two or more models across dimensions.',
domain: PROVIDER_RANKING_DOMAIN,
owners: PROVIDER_RANKING_OWNERS,
tags: [...PROVIDER_RANKING_TAGS, 'comparison'],
stability: PROVIDER_RANKING_STABILITY,
docId: [docId('docs.tech.provider-ranking.model.comparison')],
},
capability: {
key: 'provider-ranking.system',
version: '1.0.0',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'modelComparison',
},
targets: ['react', 'markdown'],
});