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.benchmark.results.list

List raw benchmark results with pagination, filterable by source, model, and dimension.

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

    List raw benchmark results with pagination, filterable by source, model, and dimension.

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

    List raw benchmark results with pagination, filterable by source, model, and dimension.

    Goal

    Provide granular access to individual benchmark data points.

    Context

    Used by Studio to drill into specific benchmark results.

    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 BenchmarkResultsListQuery = defineQuery({
    	meta: {
    		key: 'provider-ranking.benchmark.results.list',
    		title: 'List Benchmark Results',
    		version: '1.0.0',
    		description:
    			'List raw benchmark results with pagination, filterable by source, model, and dimension.',
    		goal: 'Provide granular access to individual benchmark data points.',
    		context: 'Used by Studio to drill into specific benchmark results.',
    		domain: PROVIDER_RANKING_DOMAIN,
    		owners: PROVIDER_RANKING_OWNERS,
    		tags: [...PROVIDER_RANKING_TAGS, 'results'],
    		stability: PROVIDER_RANKING_STABILITY,
    		docId: [docId('docs.tech.provider-ranking.benchmark.results.list')],
    	},
    	capability: {
    		key: 'provider-ranking.system',
    		version: '1.0.0',
    	},
    	io: {
    		input: BenchmarkResultsListInput,
    		output: BenchmarkResultsListOutput,
    	},
    	policy: {
    		auth: 'user',
    		pii: [],
    	},
    });