Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
884 changes: 884 additions & 0 deletions app/config/models.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions app/models/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ class ModelProvider(str, enum.Enum):
MISTRAL = "mistral"
META = "meta"
TOGETHER = "together"
TYPESAFE = "typesafe"
PERPLEXITY = "perplexity"
AZURE = "azure"
AWS = "aws"
Expand Down
2 changes: 2 additions & 0 deletions app/services/ai/llm_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@
"groq": "groq",
"xai": "xai",
"fireworks": "fireworks_ai",
"together": "together_ai",
"typesafe": "typesafe",
"sarvam": "sarvam",
}

Expand Down
11 changes: 11 additions & 0 deletions app/services/judge_alignment/model_catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
ModelProvider.MISTRAL.value,
ModelProvider.META.value,
ModelProvider.TOGETHER.value,
ModelProvider.TYPESAFE.value,
ModelProvider.PERPLEXITY.value,
ModelProvider.AZURE.value,
ModelProvider.AWS.value,
Expand All @@ -51,6 +52,15 @@
ModelProvider.SARVAM.value,
}

# Judge/evaluator LLM providers that are not wired into live voice pipelines.
_LLM_JUDGE_ONLY_PROVIDERS = frozenset(
{
ModelProvider.TYPESAFE.value,
}
)

_LLM_VOICE_CAPABLE_PROVIDERS = _LLM_CAPABLE_PROVIDERS - _LLM_JUDGE_ONLY_PROVIDERS

# Voice-platform integrations that also expose LLM models (credentials
# live in the Integration table rather than AIProvider).
_INTEGRATION_LLM_PLATFORMS = {
Expand All @@ -70,6 +80,7 @@ def _provider_label(provider_value: str) -> str:
"mistral": "Mistral",
"meta": "Meta",
"together": "Together",
"typesafe": "TypeSafe",
"perplexity": "Perplexity",
"azure": "Azure",
"aws": "AWS",
Expand Down
1 change: 1 addition & 0 deletions docs-fumadocs/content/docs/(docs)/integrations/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ This section focuses on platform-level integration guides for teams connecting e
{ name: 'Mistral', logo: '/mistral.svg' },
{ name: 'Meta', logo: '/metaai.png' },
{ name: 'Together', logo: '/togetherai.svg' },
{ name: 'TypeSafe', logo: '/typesafe.png' },
{ name: 'Perplexity', logo: '/perplexity-ai.svg' },
{ name: 'Azure', logo: '/azureai.png' },
{ name: 'AWS', logo: '/AWS_logo.png' },
Expand Down
Binary file added frontend/public/typesafe.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions frontend/src/components/providers/ProviderModelPicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ const PROVIDER_LABELS: Record<string, string> = {
mistral: 'Mistral',
meta: 'Meta',
together: 'Together',
typesafe: 'TypeSafe',
perplexity: 'Perplexity',
azure: 'Azure',
aws: 'AWS',
Expand Down
1 change: 1 addition & 0 deletions frontend/src/config/llmGenerationParams.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ const NO_TOP_K = new Set([
'mistral',
'meta',
'together',
'typesafe',
'perplexity',
'aws',
])
Expand Down
5 changes: 5 additions & 0 deletions frontend/src/config/providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ export const MODEL_PROVIDER_CONFIG: Record<ModelProvider, ProviderMetadata> = {
logo: '/togetherai.svg',
description: 'Hosted open-source models via Together',
},
[ModelProvider.TYPESAFE]: {
label: 'TypeSafe',
logo: '/typesafe.png',
description: 'Jev decision classifiers via TypeSafe',
},
[ModelProvider.PERPLEXITY]: {
label: 'Perplexity',
logo: '/perplexity-ai.svg',
Expand Down
1 change: 1 addition & 0 deletions frontend/src/pages/configurations/Integrations.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ const AI_INTEGRATION_PROVIDERS: ModelProvider[] = [
ModelProvider.MISTRAL,
ModelProvider.META,
ModelProvider.TOGETHER,
ModelProvider.TYPESAFE,
ModelProvider.PERPLEXITY,
ModelProvider.AZURE,
ModelProvider.AWS,
Expand Down
1 change: 1 addition & 0 deletions frontend/src/types/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,7 @@ export enum ModelProvider {
MISTRAL = 'mistral',
META = 'meta',
TOGETHER = 'together',
TYPESAFE = 'typesafe',
PERPLEXITY = 'perplexity',
AZURE = 'azure',
AWS = 'aws',
Expand Down
Loading
Loading