Spaces:
Running
Running
File size: 352 Bytes
40a04d4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #!/bin/bash
curl "https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-pro:generateContent" \
-H 'Content-Type: application/json' \
-H 'X-goog-api-key: ${GEMINI_API_KEY}' \
-X POST \
-d '{
"contents": [
{
"parts": [
{
"text": "Put your prompt here"
}
]
}
]
}'
|