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.

provider-ranking.ranking.get

Get ranked list of providers/models with composite scores, filterable by dimension.

  • Type: operation (query)
  • Version: 1.0.0
  • Tags: leaderboard
  • File: packages/libs/contracts-spec/src/provider-ranking/queries/providerRankingGet.query.ts
  • field.key.label
    provider-ranking.ranking.get
    field.version.label
    1.0.0
    field.type.label
    operation (query)
    field.title.label
    provider-ranking.ranking.get
    field.description.label

    Get ranked list of providers/models with composite scores, filterable by dimension.

  • Type: operation (query)
  • Version: 1.0.0
  • Tags: leaderboard
  • File: packages/libs/contracts-spec/src/provider-ranking/queries/providerRankingGet.query.ts
  • field.tags.label
    leaderboard
    field.owners.label
    field.stability.label

    Get ranked list of providers/models with composite scores, filterable by dimension.

    Goal

    Provide a leaderboard view of AI model performance.

    Context

    Used by Studio and API clients to compare model rankings.

    Source Definition

    import { ScalarTypeEnum, SchemaModel } from '@lssm-tech/lib.schema';
    import { docId } from '../../docs/registry';
    import type { DocBlock } from '../../docs/types';
    import { defineQuery } from '../../operations';
    import {
    	PROVIDER_RANKING_DOMAIN,
    	PROVIDER_RANKING_OWNERS,
    	PROVIDER_RANKING_STABILITY,
    	PROVIDER_RANKING_TAGS,
    } from '../constants';
    
    export const ProviderRankingGetQuery = defineQuery({
    	meta: {
    		key: 'provider-ranking.ranking.get',
    		title: 'Get Provider Rankings',
    		version: '1.0.0',
    		description:
    			'Get ranked list of providers/models with composite scores, filterable by dimension.',
    		goal: 'Provide a leaderboard view of AI model performance.',
    		context: 'Used by Studio and API clients to compare model rankings.',
    		domain: PROVIDER_RANKING_DOMAIN,
    		owners: PROVIDER_RANKING_OWNERS,
    		tags: [...PROVIDER_RANKING_TAGS, 'leaderboard'],
    		stability: PROVIDER_RANKING_STABILITY,
    		docId: [docId('docs.tech.provider-ranking.ranking.get')],
    	},
    	capability: {
    		key: 'provider-ranking.system',
    		version: '1.0.0',
    	},
    	io: {
    		input: ProviderRankingGetInput,
    		output: ProviderRankingGetOutput,
    	},
    	policy: {
    		auth: 'user',
    		pii: [],
    	},
    });