Created
March 12, 2026 12:17
-
-
Save patrickloeber/0011c3d040caecdbfd9f98b77b422715 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Simple Generate Content | |
| curl "https://generativelanguage.googleapis.com/v1beta/models/gemini-flash-latest:generateContent?key=${GEMINI_API_KEY}" \ | |
| -H 'Content-Type: application/json' \ | |
| -X POST \ | |
| -d '{ | |
| "contents": [ | |
| { | |
| "parts": [ | |
| { | |
| "text": "Explain how AI works in one sentence" | |
| } | |
| ] | |
| } | |
| ] | |
| }' | |
| # Generate Content with Safety Settings | |
| curl "https://generativelanguage.googleapis.com/v1beta/models/gemini-flash-latest:generateContent?key=${GEMINI_API_KEY}" \ | |
| -H "Content-Type: application/json" \ | |
| -X POST \ | |
| -d '{ | |
| "safetySettings": [ | |
| {"category": "HARM_CATEGORY_HATE_SPEECH", "threshold": "BLOCK_LOW_AND_ABOVE"} | |
| ], | |
| "contents": [ | |
| { | |
| "parts":[ | |
| { | |
| "text": "Tell me a joke about robots." | |
| } | |
| ] | |
| } | |
| ] | |
| }' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment