AI 对话
API 设置
ugooe_20c7742523...8f90f8c4
https://ai.ugooe.cn/api/chatdeepseek-chat
$5.00
直接调用AI对话能力,内置$5试用金,或绑定自己的API Key
https://ai.ugooe.cn/api/chat
# Python示例 - 调用UGOOE AI API
import requests
API_KEY = "ugooe_YOUR_API_KEY_HERE"
url = "https://ai.ugooe.cn/api/chat"
response = requests.post(url, params={"api_key": API_KEY}, json={
"message": "用Python写一个快速排序",
"model": "deepseek-chat",
"max_tokens": 1000
})
print(response.json()["response"])