feat: 视频计费增强与影子计费系统

This commit is contained in:
fawney19
2026-02-03 18:48:39 +08:00
parent ed68aebfb0
commit 00442c41fa
84 changed files with 6507 additions and 1678 deletions

View File

@@ -29,38 +29,38 @@ const providerExamples = [
{
name: 'OpenAI',
url: 'https://api.openai.com',
format: 'OpenAI',
format: 'OpenAI Chat',
note: '官方 API需要国际信用卡或通过代理访问'
},
{
name: 'Anthropic',
url: 'https://api.anthropic.com',
format: 'Claude',
format: 'Claude Chat',
note: '官方 Claude API'
},
{
name: 'Google AI',
url: 'https://generativelanguage.googleapis.com',
format: 'Gemini',
format: 'Gemini Chat',
note: '官方 Gemini API'
},
{
name: 'Azure OpenAI',
url: 'https://{resource}.openai.azure.com',
format: 'OpenAI',
format: 'OpenAI Chat',
note: '需要替换 {resource} 为你的资源名'
},
{
name: 'OpenRouter',
url: 'https://openrouter.ai/api',
format: 'OpenAI',
format: 'OpenAI Chat',
note: '聚合多家供应商的 API 代理'
},
{
name: '自托管 / 其他',
url: 'https://your-api.com',
format: 'OpenAI',
note: '大多数 OpenAI 兼容服务选择 OpenAI 格式'
format: 'OpenAI Chat',
note: '大多数 OpenAI 兼容服务选择 OpenAI Chat 格式'
}
]
</script>

View File

@@ -111,7 +111,7 @@ export const coreConcepts = [
// API 格式说明
export const apiFormats = [
{
name: 'OpenAI',
name: 'OpenAI Chat',
endpoint: '/v1/chat/completions',
auth: 'Authorization: Bearer xxx',
clients: ['OpenAI SDK', 'Cursor', 'LangChain', '大部分开源工具']
@@ -123,7 +123,7 @@ export const apiFormats = [
clients: ['Codex CLI']
},
{
name: 'Claude',
name: 'Claude Chat',
endpoint: '/v1/messages',
auth: 'x-api-key: xxx',
clients: ['Anthropic SDK']
@@ -135,7 +135,7 @@ export const apiFormats = [
clients: ['Claude Code']
},
{
name: 'Gemini',
name: 'Gemini Chat',
endpoint: '/v1beta/models/{model}:generateContent',
auth: 'x-goog-api-key: xxx',
clients: ['Gemini SDK', 'Gemini CLI']