新的 Google Gen AI SDK 透過 Gemini Developer API 和 Gemini Enterprise API (Vertex AI),提供 Gemini 2.0 的統一介面。除了少數例外狀況,在一個平台上執行的程式碼都能在兩個平台上執行。Gen AI SDK 也支援 Gemini 1.5 模型。
Python
Python 適用的 Google Gen AI SDK 可在 PyPI 和 GitHub 上取得:
或者,您也可以試試入門工作階段筆記。
1. 匯入程式庫
from google import genai
from google.genai import types
2. 建立用戶端
client = genai.Client(api_key='YOUR_API_KEY')
3. 產生內容
response = client.models.generate_content(
model='gemini-1.5-pro-002', contents='What is your name?'
)
print(response.text)
Go
您可以在 GitHub 上取得 Go 專用的 Google Gen AI SDK。