-
Notifications
You must be signed in to change notification settings - Fork 493
Closed
Labels
Description
https://github.com/ag2ai/ag2/actions/runs/12993622131/job/36236251447?pr=669
Here is a potential fix:
safety_settings
```python
llm_config = {
"config_list": [
{
"api_type": "google",
"model": "gemini-pro",
"api_key": os.environ.get("GOOGLE_GEMINI_API_KEY"),
"safety_settings": [
{"category": "HARM_CATEGORY_HARASSMENT", "threshold": "BLOCK_ONLY_HIGH"},
{"category": "HARM_CATEGORY_HATE_SPEECH", "threshold": "BLOCK_ONLY_HIGH"},
{"category": "HARM_CATEGORY_SEXUALLY_EXPLICIT", "threshold": "BLOCK_ONLY_HIGH"},
{"category": "HARM_CATEGORY_DANGEROUS_CONTENT", "threshold": "BLOCK_ONLY_HIGH"},
],
"top_p": 0.5,
"max_tokens": 2048,
"temperature": 1.0,
"top_k": 5,
}
]
}Metadata
Metadata
Assignees
Labels
Type
Projects
Status
Done