mirror of
https://github.com/sakaljurgis/actions-api.git
synced 2026-07-08 22:07:40 +00:00
initial commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace App\Services\Google;
|
||||
|
||||
/**
|
||||
* "safetySetting": "block_none, block_only_high, block_medium_and_above, block_low_and_above. default block_medium_and_above"
|
||||
*/
|
||||
enum ImageGenerationSafetySettings: string
|
||||
{
|
||||
case BLOCK_NONE = 'block_none';
|
||||
case BLOCK_ONLY_HIGH = 'block_only_high';
|
||||
case BLOCK_MEDIUM_AND_ABOVE = 'block_medium_and_above';
|
||||
case BLOCK_LOW_AND_ABOVE = 'block_low_and_above';
|
||||
}
|
||||
Reference in New Issue
Block a user