lunt novo 在 两个免费的gpt api 中发帖
gpt-4o模型
curl -X POST "https://ch.at/v1/chat/completions" \
-H "Content-Type: application/json" \
-H "Authorization: " \
-d '{
"messages": [
{"role": "user", "content": "你好,请介绍一下你自己。"}
]
}'
qwen3.5-plus模型
curl https://ai.inproute.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer null" \
-d '{
"messages": [
{ "role": "u...