Files
wehub-resource-sync 97e91a83f3
Ruff / Ruff (push) Has been cancelled
Test / Core Tests (push) Has been cancelled
Test / Offline Coverage Tests (Python 3.10) (push) Has been cancelled
Test / Offline Coverage Tests (Python 3.11) (push) Has been cancelled
Test / Offline Coverage Tests (Python 3.12) (push) Has been cancelled
Test / Offline Coverage Tests (Python 3.13) (push) Has been cancelled
Test / Offline Coverage Tests (Python 3.9) (push) Has been cancelled
Test / Full Coverage (Python 3.11) (push) Has been cancelled
Test / Core Provider Tests (OpenAI) (push) Has been cancelled
Test / Core Provider Tests (Anthropic) (push) Has been cancelled
Test / Core Provider Tests (Google) (push) Has been cancelled
Test / Core Provider Tests (Other) (push) Has been cancelled
Test / Anthropic Tests (push) Has been cancelled
Test / Gemini Tests (push) Has been cancelled
Test / Google GenAI Tests (push) Has been cancelled
Test / Vertex AI Tests (push) Has been cancelled
Test / OpenAI Tests (push) Has been cancelled
Test / Writer Tests (push) Has been cancelled
Test / Auto Client Tests (push) Has been cancelled
ty / type-check (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:36:38 +08:00

164 lines
6.1 KiB
Python

from typing_extensions import TypeAliasType
from typing import Literal
KnownModelName = TypeAliasType(
"KnownModelName",
Literal[
# Anthropic Models
"anthropic/claude-opus-4-0-20250514",
"anthropic/claude-sonnet-4-0-20250514",
"anthropic/claude-sonnet-4-6",
"anthropic/claude-3-5-haiku-20241022",
"anthropic/claude-3-7-sonnet-latest",
"anthropic/claude-3-7-sonnet-20250219",
"anthropic/claude-3-5-sonnet-latest",
"anthropic/claude-3-5-sonnet-20241022",
"anthropic/claude-3-5-sonnet-20240620",
"anthropic/claude-3-5-haiku-latest",
"anthropic/claude-3-5-haiku-20241022",
"anthropic/claude-3-opus-latest",
"anthropic/claude-3-opus-20240229",
"anthropic/claude-haiku-4-5-20251001",
# Cohere Models - https://docs.cohere.com/docs/models
"cohere/c4ai-aya-expanse-32b",
"cohere/c4ai-aya-expanse-8b",
"cohere/command",
"cohere/command-light",
"cohere/command-light-nightly",
"cohere/command-nightly",
"cohere/command-a-03-2025",
"cohere/command-r7b-12-2024",
"cohere/command-a-translate-08-2025",
"cohere/command-a-reasoning-08-2025",
"cohere/command-r", # deprecated 2025-09-15
"cohere/command-r-03-2024", # deprecated 2025-09-15
"cohere/command-r-08-2024",
"cohere/command-r-plus", # deprecated 2025-09-15
"cohere/command-r-plus-04-2024", # deprecated 2025-09-15
"cohere/command-r-plus-08-2024",
"cohere/command-r7b-12-2024",
# OpenAI Models
"openai/gpt-3.5-turbo",
"openai/gpt-3.5-turbo-0125",
"openai/gpt-3.5-turbo-1106",
"openai/gpt-3.5-turbo-16k",
"openai/gpt-4",
"openai/gpt-4-0125-preview",
"openai/gpt-4-0613",
"openai/gpt-4-1106-preview",
"openai/gpt-4-32k",
"openai/gpt-4-32k-0613",
"openai/gpt-4-turbo",
"openai/gpt-4-turbo-2024-04-09",
"openai/gpt-4-turbo-preview",
"openai/gpt-4.1",
"openai/gpt-4.1-2025-04-14",
"openai/gpt-4.1-mini",
"openai/gpt-4.1-mini-2025-04-14",
"openai/gpt-4.1-nano",
"openai/gpt-4.1-nano-2025-04-14",
"openai/gpt-4o",
"openai/gpt-4o-2024-05-13",
"openai/gpt-4o-2024-08-06",
"openai/gpt-4o-2024-11-20",
"openai/gpt-4o-audio-preview",
"openai/gpt-4o-audio-preview-2024-10-01",
"openai/gpt-4o-audio-preview-2024-12-17",
"openai/gpt-4o-mini",
"openai/gpt-4o-mini-2024-07-18",
"openai/o1",
"openai/o1-2024-12-17",
"openai/o1-mini",
"openai/o1-mini-2024-09-12",
"openai/o1-preview",
"openai/o1-preview-2024-09-12",
"openai/o3",
"openai/o3-2025-04-16",
"openai/o3-mini",
"openai/o3-mini-2025-01-31",
"openai/o4-mini",
"openai/o4-mini-2025-04-16",
# Groq Models
"groq/gemma2-9b-it",
"groq/llama-3.3-70b-versatile",
"groq/llama-3.1-8b-instant",
"groq/llama3-70b-8192",
"groq/llama3-8b-8192",
"groq/qwen-qwq-32b",
# Mistral
"mistral/codestral-latest",
"mistral/mistral-large-latest",
"mistral/mistral-small-latest",
"mistral/pixtral-large-latest",
"mistral/mistral-saba-latest",
"mistral/ministral-3b-latest",
"mistral/ministral-8b-latest",
# Google Models
"google/gemini-3-flash",
"google/gemini-3-flash-8b",
"google/gemini-1.5-pro",
"google/gemini-2.0-flash-exp",
"google/gemini-2.0-flash-thinking-exp-01-21",
"google/gemini-exp-1206",
"google/gemini-2.0-flash",
"google/gemini-2.0-flash-lite-preview-02-05",
"google/gemini-2.0-pro-exp-02-05",
"google/gemini-2.5-flash-preview-04-17",
"google/gemini-2.5-pro-exp-03-25",
"google/gemini-2.5-pro-preview-03-25",
# VertexAI Models
"vertexai/gemini-3-flash",
"vertexai/gemini-1.5-pro",
"vertexai/gemini-2.0-flash-exp",
"vertexai/gemini-2.0-flash-001",
"vertexai/gemini-2.0-flash-lite",
"vertexai/gemini-2.5-pro-preview-03-25",
"vertexai/gemini-2.5-pro-exp-03-25",
"vertexai/gemini-2.5-flash-preview-04-17",
# Generative AI models
"generative-ai/gemini-3-flash",
"generative-ai/gemini-3-flash-8b",
"generative-ai/gemini-1.5-pro",
"generative-ai/gemini-2.0-flash-exp",
"generative-ai/gemini-2.0-flash-thinking-exp-01-21",
"generative-ai/gemini-exp-1206",
"generative-ai/gemini-2.0-flash",
"generative-ai/gemini-2.0-flash-lite-preview-02-05",
"generative-ai/gemini-2.0-pro-exp-02-05",
"generative-ai/gemini-2.5-flash-preview-04-17",
"generative-ai/gemini-2.5-pro-exp-03-25",
"generative-ai/gemini-2.5-pro-preview-03-25",
# Fireworks AI
"fireworks/accounts/fireworks/models/llama4-maverick-instruct-basic",
"fireworks/accounts/fireworks/models/llama-v3p1-405b-instruct",
"fireworks/accounts/fireworks/models/llama4-scout-instruct-basic",
"fireworks/accounts/fireworks/models/qwen3-30b-a3b",
"fireworks/accounts/fireworks/models/qwen3-235b-a22b",
"fireworks/accounts/fireworks/models/deepseek-v3",
"fireworks/accounts/fireworks/models/llama-v3p1-8b-instruct",
"fireworks/accounts/fireworks/models/llama-v3p3-70b-instruct",
# Cerebras
"cerebras/llama-4-scout-17b-16e-instruct",
"cerebras/llama3.1-8b",
"cerebras/llama-3.3-70b",
# Writer
"writer/palmyra-x5",
"writer/palmyra-x4",
# Perplexity
"perplexity/sonar-deep-research",
"perplexity/sonar-reasoning-pro",
"perplexity/sonar-pro",
"perplexity/sonar",
"perplexity/r1-1776",
# XAI (Grok) Models
"xai/grok-3",
"xai/grok-3-fast",
"xai/grok-3-mini",
"xai/grok-3-mini-fast",
# DeepSeek Models
"deepseek/deepseek-chat",
"deepseek/deepseek-reasoner",
],
)