🤖 AI Service API

多模型AI服务 API

📊 今日使用统计 每10秒自动刷新

总调用次数

106

实时统计

提供商统计

提供商 调用次数
cfdeepseek 7
cfkimi 5
cfmetaso 1
cfstep 1
copilot 35
github 23
google 32
qwen 2

模型统计

模型 提供商 调用次数
cfdeepseek-deepseek cfdeepseek 4
cfdeepseek-deepseek-r1-search-silent cfdeepseek 3
cfkimi-kimi cfkimi 4
cfkimi-kimi-k1-search-silent cfkimi 1
cfmetaso-detail cfmetaso 1
cfstep-step cfstep 1
claude-3.7-sonnet-thought copilot 12
gemini-2.0-flash-exp google 7
gemini-2.0-flash-lite google 21
gemini-2.5-pro-exp-03-25-search google 4
gemini-2.5-pro-preview-03-25 copilot 1
gpt-4.1 copilot 16
gpt-4o github 22
gpt-4o-2024-11-20 copilot 6
gpt-4o-mini github 1
qwen-max-latest qwen 2

Token统计

Token 提供商 调用次数
4gxhIRHk*** cfdeepseek 4
67a9b56e*** cfmetaso 1
AIzaSyAZ*** google 7
AIzaSyB4*** google 3
AIzaSyB_*** google 2
AIzaSyBg*** google 1
AIzaSyCc*** google 5
AIzaSyCe*** google 7
AIzaSyDM*** google 3
AIzaSyDZ*** google 4
K/6Tb0bJ*** cfdeepseek 1
O1cqAea0*** cfdeepseek 1
b1dbf0fb*** cfstep 1
eyJhbGci*** cfkimi 5
ghp_1Fa5*** github 5
ghp_77jN*** github 6
ghp_92Z0*** github 5
ghp_AZT5*** github 3
ghp_jk30*** github 4
ghu_EK6u*** copilot 35
lVgcfTKV*** cfdeepseek 1
sk-3b47e*** qwen 2
最后更新:

📈 每日统计

每日提供商统计

日期 提供商 调用次数

🔗 API端点

💬 Chat

聊天补全API端点

# Chat completion 示例代码
import requests

url = "http://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   # 频率惩罚
}
🔤 Embeddings

文本嵌入API端点

# Embeddings 示例代码
import requests

url = "http://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'
}
📋 Models (HTML)

查看支持的模型表(HTML格式)

🔍 Models (JSON)

获取模型配置息(JSON格式)

💓 健康状态: 健康
📊 Daily Stats

查看每日使用统计

📈 Stats Summary

查看统计摘要