chore: update field audit tables and provider configs

Batch update from official docs audit - price corrections, context
window fixes, field report updates across all providers.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-24 20:12:57 +08:00
parent 5b9c8ac61f
commit b0e0cead04
92 changed files with 1000 additions and 1763 deletions

View File

@@ -7,6 +7,9 @@
## 来源
- https://api-docs.deepseek.com/quick_start/pricing
- https://api-docs.deepseek.com/api/create-chat-completion
- https://api-docs.deepseek.com/guides/reasoning_model
- https://api-docs.deepseek.com/quick_start/parameter_settings
- https://zenmux.ai/models
- https://zenmux.ai/api/v1/models
@@ -26,8 +29,8 @@
| `inputPrice` | `2` | `2` | 待确认 | 本文件币种为CNYZenMux价格为USD需官方价格页复核 |
| `outputPrice` | `8` | `8` | 待确认 | 本文件币种为CNYZenMux价格为USD需官方价格页复核 |
| `capabilities` | `["chat","code","reasoning","multilingual"]` | `["chat","code","reasoning","multilingual"]` | 待确认 | ZenMux给出reasoning=false但capabilities是项目语义字段需官方能力说明复核 |
| `defaultTemperature` | `1` | `1` | 待确认 | 官方通常不提供默认采样参数 |
| `defaultTopP` | `1` | `1` | 待确认 | 官方通常不提供默认采样参数 |
| `defaultTemperature` | `1` | `1` | 保持 | DeepSeek 官方 Chat Completions API https://api-docs.deepseek.com/api/create-chat-completion 将 `temperature` schema 默认值标注为 `1`;参数设置页 https://api-docs.deepseek.com/quick_start/parameter_settings 也写明默认值为 `1.0` |
| `defaultTopP` | `1` | `1` | 保持 | DeepSeek 官方 Chat Completions API https://api-docs.deepseek.com/api/create-chat-completion 将 `top_p` schema 默认值标注为 `1` |
| `extra` | `{}` | `{}` | 待确认 | 扩展字段为本地schema需业务侧定义 |
## deepseek-reasoner
@@ -46,6 +49,6 @@
| `inputPrice` | `4` | `4` | 待确认 | 本文件币种为CNYZenMux价格为USD需官方价格页复核 |
| `outputPrice` | `16` | `16` | 待确认 | 本文件币种为CNYZenMux价格为USD需官方价格页复核 |
| `capabilities` | `["chat","reasoning","deep_thinking","code","math"]` | `["chat","reasoning","deep_thinking","code","math"]` | 待确认 | ZenMux给出reasoning=true但capabilities是项目语义字段需官方能力说明复核 |
| `defaultTemperature` | `1` | `1` | 待确认 | 官方通常不提供默认采样参数 |
| `defaultTopP` | `1` | `1` | 待确认 | 官方通常不提供默认采样参数 |
| `defaultTemperature` | `null` | `null` | 保持 | DeepSeek 官方推理模型文档 https://api-docs.deepseek.com/guides/reasoning_model 明确 `deepseek-reasoner` 不支持参数 `temperature`,因此本地字段应为 `null` 而不是伪装成默认值 |
| `defaultTopP` | `null` | `null` | 保持 | DeepSeek 官方推理模型文档 https://api-docs.deepseek.com/guides/reasoning_model 明确 `deepseek-reasoner` 不支持参数 `top_p`,因此本地字段应为 `null` |
| `extra` | `{}` | `{}` | 待确认 | 扩展字段为本地schema需业务侧定义 |