Spaces:
Sleeping
Sleeping
File size: 572 Bytes
213fb4c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# Set up the model configuration for content generation
generation_config = {
"temperature": 0.4,
"top_p": 1,
"top_k": 32,
"max_output_tokens": 1400,
"response_mime_type": "text/plain",
}
# Define safety settings for content generation
safety_settings = [
{"category": f"HARM_CATEGORY_{category}", "threshold": "BLOCK_MEDIUM_AND_ABOVE"}
for category in [
"HARASSMENT",
"HATE_SPEECH",
"SEXUALLY_EXPLICIT",
"DANGEROUS_CONTENT",
]
]
# Define the model name
model_name = "gemini-1.5-pro"
|