Gemini 模型从一开始就具有多模态特性,可用于执行各种图像处理和计算机视觉任务,包括但不限于图片说明、分类和视觉问答,而无需训练专门的机器学习模型。
除了具备一般多模态功能之外,Gemini 模型还通过额外训练,针对特定用例(例如对象检测和细分)提供更高的准确度。
将图片传递给 Gemini
您可以使用多种方法将图片作为输入内容提供给 Gemini:
- 使用网址传递图片:非常适合可公开访问的图片。
- 传递内嵌图片数据:用于传递 base64 编码的图片数据。
- 使用 File API 上传图片:建议用于较大的文件,或在多个请求中重复使用图片。
使用网址传递图片
您可以使用 Files API 上传图片,并在请求中传递该图片:
Python
from google import genai
client = genai.Client()
uploaded_file = client.files.upload(file="path/to/organ.jpg")
interaction = client.interactions.create(
model="gemini-3.6-flash",
input=[
{"type": "text", "text": "Caption this image."},
{
"type": "image",
"uri": uploaded_file.uri,
"mime_type": uploaded_file.mime_type
}
]
)
print(interaction.output_text)
JavaScript
import { GoogleGenAI } from "@google/genai";
const client = new GoogleGenAI({});
const uploadedFile = await client.files.upload({
file: "path/to/organ.jpg",
config: { mimeType: "image/jpeg" }
});
const interaction = await client.interactions.create({
model: "gemini-3.6-flash",
input: [
{type: "text", text: "Caption this image."},
{
type: "image",
uri: uploadedFile.uri,
mime_type: uploadedFile.mimeType
}
]
});
console.log(interaction.output_text);
REST
# First upload the file using the Files API, then use the URI:
curl -X POST "https://generativelanguage.googleapis.com/v1beta/interactions" \
-H "x-goog-api-key: $GEMINI_API_KEY" \
-H 'Content-Type: application/json' \
-d '{
"model": "gemini-3.6-flash",
"input": [
{"type": "text", "text": "Caption this image."},
{
"type": "image",
"uri": "YOUR_FILE_URI",
"mime_type": "image/jpeg"
}
]
}'
传递内嵌图片数据
您可以以 base64 编码的字符串形式提供图片数据:
Python
import base64
from google import genai
with open('path/to/small-sample.jpg', 'rb') as f:
image_bytes = f.read()
client = genai.Client()
interaction = client.interactions