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.
Get detailed profile for a single model including all scores, metadata, cost, and capabilities.
Goal
Provide a comprehensive view of a single model for comparison.
Context
Used by Studio model detail pages and comparison views.
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 ModelProfileGetQuery = defineQuery({
meta: {
key: 'provider-ranking.model.profile.get',
title: 'Get Model Profile',
version: '1.0.0',
description:
'Get detailed profile for a single model including all scores, metadata, cost, and capabilities.',
goal: 'Provide a comprehensive view of a single model for comparison.',
context: 'Used by Studio model detail pages and comparison views.',
domain: PROVIDER_RANKING_DOMAIN,
owners: PROVIDER_RANKING_OWNERS,
tags: [...PROVIDER_RANKING_TAGS, 'model', 'profile'],
stability: PROVIDER_RANKING_STABILITY,
docId: [docId('docs.tech.provider-ranking.model.profile.get')],
},
capability: {
key: 'provider-ranking.system',
version: '1.0.0',
},
io: {
input: ModelProfileGetInput,
output: ModelProfileOutput,
},
policy: {
auth: 'user',
pii: [],
},
});