fix_photo.sh 472 B

1234567891011121314
  1. curl -s -X POST \
  2. "https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash-image-preview:generateContent" \
  3. -H "x-goog-api-key: $GEMINI_API_KEY" \
  4. -H "Content-Type: application/json" \
  5. -d '{
  6. "contents": [{
  7. "parts": [
  8. {"text": "Create a picture of a nano banana dish in a fancy restaurant with a Gemini theme"}
  9. ]
  10. }]
  11. }' \
  12. | grep -o '"data": "[^"]*"' \
  13. | cut -d'"' -f4 \
  14. | base64 --decode > gemini-native-image.png