You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Perplexity's Gateway API serves two open-weight models under provider-specific IDs that are missing from the catalog. The underlying models exist in the catalog through other providers, but the Perplexity-specific IDs (perplexity/ prefix) are absent.
Missing Models
Model ID
Underlying Catalog Entry
Perplexity Pricing (input/output/cached $/1M)
perplexity/kimi-k3
moonshotai/Kimi-K3 (line 10670, baseten+together)
$3.00 / $15.00 / $0.30
perplexity/glm-5.2
zai-org/GLM-5.2 (line 10606, baseten+together)
$1.40 / $4.40 / $0.26
Pricing matches the underlying catalog entries exactly.
Context
Perplexity's Gateway API (api.perplexity.ai/router/v1/) provides OpenAI-compatible access to third-party models using perplexity/ prefixed IDs
This follows the established catalog pattern where provider-specific IDs get separate entries (e.g., accounts/fireworks/models/kimi-k3 for Fireworks, x-ai/grok-4.20-multi-agent for OpenRouter)
grep for perplexity/kimi-k3 and perplexity/glm-5.2 in model_list.json returns no matches
ID format
✅
Follows perplexity/ prefix convention used by Gateway API; consistent with how OpenRouter-specific IDs use provider prefixes (e.g., x-ai/, moonshotai/)
Pricing match
✅
Perplexity prices match existing catalog entries for underlying models exactly
Not deprecated
✅
Active on Gateway API docs and pricing page
Not embedding/vision-only
✅
Both are chat models (kimi-k3 is multimodal, glm-5.2 is text-only with reasoning)
Duplicate check
✅
No open or closed issues cover perplexity/kimi-k3 or perplexity/glm-5.2
Gap description
Perplexity's Gateway API serves two open-weight models under provider-specific IDs that are missing from the catalog. The underlying models exist in the catalog through other providers, but the Perplexity-specific IDs (
perplexity/prefix) are absent.Missing Models
perplexity/kimi-k3moonshotai/Kimi-K3(line 10670, baseten+together)perplexity/glm-5.2zai-org/GLM-5.2(line 10606, baseten+together)Pricing matches the underlying catalog entries exactly.
Context
api.perplexity.ai/router/v1/) provides OpenAI-compatible access to third-party models usingperplexity/prefixed IDsaccounts/fireworks/models/kimi-k3for Fireworks,x-ai/grok-4.20-multi-agentfor OpenRouter)perplexity/sonarAgent API modelSuggested Catalog Entries
Verification Checklist
/router/v1/modelsresponse) AND Perplexity pricing page (pricing in Gateway API section)perplexity/kimi-k3andperplexity/glm-5.2inmodel_list.jsonreturns no matchesperplexity/prefix convention used by Gateway API; consistent with how OpenRouter-specific IDs use provider prefixes (e.g.,x-ai/,moonshotai/)perplexity/kimi-k3orperplexity/glm-5.2Verification Notes
/router/v1/modelsAPI responsemoonshotai/Kimi-K3catalog entryzai-org/GLM-5.2catalog entryRelationship to existing entries
moonshotai/Kimi-K3accounts/fireworks/models/kimi-k3perplexity/kimi-k3zai-org/GLM-5.2perplexity/glm-5.2Local Files Inspected
packages/proxy/schema/model_list.json— confirmed both IDs absent; verified underlying model entries and pricing{ "kind": "missing_model", "provider": "perplexity", "models": ["perplexity/kimi-k3", "perplexity/glm-5.2"], "status": "active", "model_specs": { "perplexity/kimi-k3": { "format": "openai", "flavor": "chat", "multimodal": true, "input_cost_per_mil_tokens": 3, "output_cost_per_mil_tokens": 15, "input_cache_read_cost_per_mil_tokens": 0.3, "displayName": "Perplexity: Kimi K3", "reasoning": true, "max_input_tokens": 1048576, "available_providers": ["perplexity"] }, "perplexity/glm-5.2": { "format": "openai", "flavor": "chat", "input_cost_per_mil_tokens": 1.4, "output_cost_per_mil_tokens": 4.4, "input_cache_read_cost_per_mil_tokens": 0.26, "displayName": "Perplexity: GLM 5.2", "reasoning": true, "max_input_tokens": 262144, "max_output_tokens": 128000, "available_providers": ["perplexity"] } }, "source_urls": [ "https://docs.perplexity.ai/docs/gateway/quickstart", "https://docs.perplexity.ai/guides/pricing" ] }