Ottieni una chiave API

Per utilizzare l'API, è necessaria una chiave API. Puoi creare una chiave con un solo clic in MakerSuite.

Ottenere una chiave API

Verifica la chiave API con il comando curl

Puoi utilizzare un comando curl per verificare la configurazione. Puoi passare la chiave API nell'URL:

PALM_KEY="YOUR KEY HERE"
curl -H 'Content-Type: application/json' \
     -d '{"prompt": {text: "Give me five subcategories of jazz"} }' \
     "https://generativelanguage.googleapis.com/v1/models/text-bison-001:generateText?key=${PALM_KEY}"

Oppure nell'intestazione x-goog-api-key:

PALM_KEY="YOUR KEY HERE"
curl -H 'Content-Type: application/json' \
     -H "x-goog-api-key: ${PALM_KEY}" \
     -d '{"prompt": {text: "Give me five subcategories of jazz"} }' \
     "https://generativelanguage.googleapis.com/v1/models/text-bison-001:generateText"

Passaggi successivi