SDK Google Gen AI

Il nuovo SDK Google Gen AI fornisce un'interfaccia unificata a Gemini 2.0 tramite sia l'API Gemini Developer sia l'API Gemini Enterprise (Vertex AI). Con alcune eccezioni, il codice che viene eseguito su una piattaforma verrà eseguito su entrambe. L'SDK Gen AI supporta anche i modelli Gemini 1.5.

Python

L'SDK Google AI generativa per Python è disponibile su PyPI e GitHub:

In alternativa, prova il notebook Inizia.

1. Importa librerie

from google import genai
from google.genai import types

2. Crea un client

client = genai.Client(api_key='YOUR_API_KEY')

3. Generare contenuti

response = client.models.generate_content(
    model='gemini-1.5-pro-002', contents='What is your name?'
)
print(response.text)

Vai

L'SDK Google Gen AI per Go è disponibile su GitHub.