多模型AI服务 API
41
| 提供商 | 调用次数 |
|---|---|
| cfkimi | 3 |
| copilot | 6 |
| github | 9 |
| 23 |
| 模型 | 提供商 | 调用次数 |
|---|---|---|
| cfkimi-kimi-k2 | cfkimi | 3 |
| claude-haiku-4.5 | copilot | 1 |
| gemini-2.0-flash | 3 | |
| gemini-2.0-flash-lite | 17 | |
| gemini-flash-latest | 1 | |
| gemini-pro-latest | 2 | |
| gpt-4.1 | copilot | 3 |
| gpt-4.1 | github | 9 |
| gpt-5-mini | copilot | 2 |
| Token | 提供商 | 调用次数 |
|---|---|---|
| AIzaSyAZ*** | 3 | |
| AIzaSyB4*** | 2 | |
| AIzaSyB4gI*** | 1 | |
| AIzaSyCc*** | 2 | |
| AIzaSyCe*** | 2 | |
| AIzaSyCe_k*** | 1 | |
| AIzaSyCs*** | 2 | |
| AIzaSyDM*** | 3 | |
| AIzaSyDZ*** | 2 | |
| AIzaSyDZJ3*** | 1 | |
| AIzaSyDl*** | 4 | |
| eyJhbGci*** | cfkimi | 3 |
| ghp_1Fa5*** | github | 1 |
| ghp_77jN*** | github | 1 |
| ghp_AZT5*** | github | 4 |
| ghp_OJ9s*** | github | 1 |
| ghp_TSoZ*** | github | 1 |
| ghp_z5Mr*** | github | 1 |
| ghu_EK6ukE*** | copilot | 3 |
| ghu_cQvY*** | copilot | 2 |
| ghu_cQvYOw*** | copilot | 1 |
| 日期 | 提供商 | 调用次数 |
|---|
聊天补全API端点
# Chat completion 示例代码
import requests
url = "http://www.yangtzeaidata.fun/v1/chat/completions" # 使用实际的 host
headers = {
"Authorization": "Bearer your-api-key",
"Content-Type": "application/json"
}
data = {
"model": "gpt-4o", # 默认使用 GPT-4 Turbo (4o)
"messages": [
{"role": "system", "content": "你是一个有帮助的助手"},
{"role": "user", "content": "你好!请介绍一下你自己。"}
],
"temperature": 0.7, # 制随机性 (0-2)
"max_tokens": 4096, # 最大输出长度
"stream": True, # 流式输出
"top_p": 0.95, # 控制输出多样性
"presence_penalty": 0, # 重复惩罚
"frequency_penalty": 0 # 频率惩罚
}
文本嵌入API端点
# Embeddings 示例代码
import requests
url = "http://www.yangtzeaidata.fun/v1/embeddings" # 使用实际的 host
headers = {
"Authorization": "Bearer your-api-key",
"Content-Type": "application/json"
}
data = {
"model": "text-embedding-3-large", # 默认使用最新的嵌入模型
"input": "你好,世界!",
"encoding_format": "float" # 可选: 'float' 或 'base64'
}
查看支持的模型表(HTML格式)
获取模型配置息(JSON格式)
查看每日使用统计
查看统计摘要