Interface FindRerankingProvidersResult

The overarching result containing the rerankingProviders map.

Temporarily dynamically typed. In a future release, the type will be strengthened.

Field

rerankingProviders - Map of reranking provider names to info about said provider.

See

DbAdmin.findRerankingProviders

interface FindRerankingProvidersResult {
    rerankingProviders: Record<string, any>;
}

Properties

rerankingProviders: Record<string, any>

A map of reranking provider names (e.g. nvidia), to information about said provider (e.g. models/auth).

Example

{
  nvidia: {
  displayName: 'Nvidia',
  ...,
  }
}

Temporarily typed as any. In a future release, the type will be strengthened.