Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save patrickloeber/0011c3d040caecdbfd9f98b77b422715 to your computer and use it in GitHub Desktop.

Select an option

Save patrickloeber/0011c3d040caecdbfd9f98b77b422715 to your computer and use it in GitHub Desktop.
# 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