sk-cfM4JRNqd4UYwWnfBwCaS3LXozDkrCX4IT2PLJBvM4TAoXk5
http://152.32.216.51/image.jpg
http://152.32.216.51/audio.mp3
http://152.32.216.51/video.mp4
==文字测试通过
curl https://workerapi.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer sk-cfM4JRNqd4UYwWnfBwCaS3LXozDkrCX4IT2PLJBvM4TAoXk5" \
-d '{
"model": "gemini-2.5-flash",
"messages": [
{
"role": "user",
"content": "你好,写一首诗歌"
}
]
}'
curl https://workerapi.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer sk-cfM4JRNqd4UYwWnfBwCaS3LXozDkrCX4IT2PLJBvM4TAoXk5" \
-d '{
"model": "gemini-2.5-flash",
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "请分析总结下面这张图片主要讲了什么?"
},
{
"type": "image_url",
"image_url": {
"url": "http://152.32.216.51/image.jpg"
}
}
]
}
]
}'
curl https://workerapi.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer sk-cfM4JRNqd4UYwWnfBwCaS3LXozDkrCX4IT2PLJBvM4TAoXk5" \
-d '{
"model": "gemini-2.5-flash",
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "请分析总结下面这个音频主要讲了什么?"
},
{
"type": "audio_url",
"audio_url": {
"url": "http://152.32.216.51/audio.mp3"
}
}
]
}
]
}'
curl https://workerapi.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer sk-cfM4JRNqd4UYwWnfBwCaS3LXozDkrCX4IT2PLJBvM4TAoXk5" \
-d '{
"model": "gemini-2.5-flash",
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "请分析总结下面这个视频主要讲了什么?"
},
{
"type": "video_url",
"video_url": {
"url": "http://152.32.216.51/video.mp4"
}
}
]
}
]
}'
curl https://workerapi.com/v1/chat/completions \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer sk-cfM4JRNqd4UYwWnfBwCaS3LXozDkrCX4IT2PLJBvM4TAoXk5' \
-d '{
"contents": [
{
"role": "user",
"parts": [
{
"text": "请分析总结下面的图片、音频、视频各自主要讲了什么?"
},
{
"inlineData": {
"mimeType": "image/jpeg",
"data": "BASE64_IMAGE_DATA"
}
},
{
"fileData": {
"mimeType": "audio/mpeg",
"fileUri": "https://example.com/audio/file-xxx.mp3"
}
},
{
"fileData": {
"mimeType": "video/mp4",
"fileUri": "https://example.com/video/file-xxx.mp4"
}
}
]
}
]
}'
==图片测试通过2
curl https://workerapi.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer sk-cfM4JRNqd4UYwWnfBwCaS3LXozDkrCX4IT2PLJBvM4TAoXk5" \
-d '{
"model": "gemini-2.5-flash",
"messages": [
{
"role": "user",
"content": [
{ "type": "text", "text": "请分析总结下面的图片主要讲了什么?" },
{ "type": "image_url", "image_url": { "url": "
http://152.32.216.51/image.jpg" } }
]
}
]
}'
curl https://workerapi.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer sk-cfM4JRNqd4UYwWnfBwCaS3LXozDkrCX4IT2PLJBvM4TAoXk5" \
-d '{
"model": "gemini-2.5-flash",
"messages": [
{
"role": "user",
"content": [
{ "type": "text", "text": "请分析总结下面这个音频主要讲了什么?" },
{ "type": "audio_url", "audio_url": { "url": "
http://152.32.216.51/audio.mp3" } }
]
}
]
}'
curl post https://workerapi.com/v1/audio/transcriptions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer sk-cfM4JRNqd4UYwWnfBwCaS3LXozDkrCX4IT2PLJBvM4TAoXk5" \
-d '{
"raw_proxy": true,
"model": "gemini-2.5-flash",
"contents": [
{
"role": "user",
"parts": [
{ "text": "请分析总结下面这个音频主要讲了什么?" },
{
"fileData": {
"mimeType": "audio/mpeg",
"fileUri": "http://152.32.216.51/audio.mp3"
}
}
]
}
]
}'