Gemini API 和 Google AI Studio 可帮助您开始使用 Google 的最新模型,并将您的想法转变为可扩缩的应用。
Python
importgoogle.generativeaiasgenaigenai.configure(api_key="YOUR_API_KEY")model=genai.GenerativeModel("gemini-1.5-flash")response=model.generate_content("Explain how AI works")print(response.text)
Node.js
const{GoogleGenerativeAI}=require("@google/generative-ai");constgenAI=newGoogleGenerativeAI("YOUR_API_KEY");constmodel=genAI.getGenerativeModel({model:"gemini-1.5-flash"});constprompt="Explain how AI works";constresult=awaitmodel.generateContent(prompt);console.log(result.response.text());
REST
curl"https://generativelanguage.googleapis.com/v1beta/models/gemini-1.5-flash:generateContent?key=$YOUR_API_KEY"\
-H'Content-Type: application/json'\
-XPOST\
-d'{ "contents": [{ "parts":[{"text": "Write a story about a magic backpack."}] }] }'