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.model.profile.get

Get detailed profile for a single model including all scores, metadata, cost, and capabilities.

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

    Get detailed profile for a single model including all scores, metadata, cost, and capabilities.

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

    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

    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: [],
      },
    });