使用 Gemini API 构建应用
轻松将 Google 最大、最强大的 AI 模型集成到您的应用中
现已推出
200 万个令牌
探索 Gemini 1.5 Pro 迄今为止最长的上下文窗口。在 Google AI Studio 中构建和实验 Gemini API。
多种 Gemini 尺寸
实现无可比拟的多功能性
使用 Gemini API 将 1.5 Flash 集成到您的应用中
您可以快速在 Google AI Studio 中开始使用 Gemini 模型构建应用,且无需支付费用
import google.generativeai as genai
import PIL.Image
import os
genai.configure(api_key=os.environ["GOOGLE_API_KEY"])
img = PIL.Image.open('path/to/image.png')
model = genai.GenerativeModel(model_name="gemini-1.5-flash")
response = model.generate_content(["What is in this photo?", img])
print(response.text)
const { GoogleGenerativeAI } = require("@google/generative-ai");
const fs = require("fs");
const genAI = new GoogleGenerativeAI(process.env.GOOGLE_API_KEY);
async function run() {
const model = genAI.getGenerativeModel({ model: "gemini-1.5-flash"});
const result = await model.generateContent([
"What is in this photo?",
{inlineData: {data: Buffer.from(fs.readFileSync('path/to/image.png')).toString("base64"),
mimeType: 'image/png'}}]
);
console.log(result.response.text());
}
run();
curl https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent?key=${GOOGLE_API_KEY} \
-H 'Content-Type: application/json' \
-d '{
"contents":[{
"parts":[
{"text": "What is this picture?"},
{"inline_data": {
"mime_type":"image/png",
"data": "'"$(base64 -i 'path/to/image/image.png')"'"
}}
]}
]
}'
import "github.com/google/generative-ai-go/genai"
import "google.golang.org/api/option"
ctx := context.Background()
client, err := genai.NewClient(ctx, option.WithAPIKey(os.Getenv("GOOGLE_API_KEY")))
model := client.GenerativeModel("gemini-1.5-flash")
resp, err := model.GenerateContent(
ctx,
genai.Text("What's in this photo?"),
genai.ImageData("jpeg", imgData))
val model = GenerativeModel("gemini-1.5-flash")
val response = model.generateContent(content {
text("What's in this photo?")
image(ingredientsBitmap)
})
let model = GenerativeModel(name: "gemini-1.5-flash")
let response = try await model.generateContent("What's in this photo?", image)
final model = GenerativeModel(model: "gemini-1.5-flash", apiKey: apiKey);
final response = await model.generateContent([
Content.text("What's in this photo?"),
Content.data("image/png", imageBytes),
]);
企业级 AI
创建以您的数据为依据的代理
每个 Gemini 模型都针对自己的一系列使用场景构建而成,构成了一个多功能模型系列,可在从数据中心到设备端的所有设备上高效运行。
构建企业级 AI
借助 Google Cloud 强大的安全性、隐私保护和合规性框架,将 AI 模型集成到您的服务中。
Gemini Nano
Android AICore 让功能强大的手机可以运行 Gemini Nano,让您轻松打造设备端 AI 体验。这类体验需要使用敏感信息,即使设备离线也同样需要工作。
Pixel 8 Pro 和三星 S24 系列均有提供,即将推出,敬请期待