mirror of
https://github.com/NovaOSS/nova-api.git
synced 2024-11-25 21:43:57 +01:00
update comments
This commit is contained in:
parent
15f98d8da8
commit
e489ff0898
|
@ -10,12 +10,13 @@ import load_balancing
|
||||||
from typing import Union
|
from typing import Union
|
||||||
|
|
||||||
async def is_policy_violated(inp: Union[str, list]) -> bool:
|
async def is_policy_violated(inp: Union[str, list]) -> bool:
|
||||||
"""Check if a message violates the moderation policy.
|
"""
|
||||||
You can either pass a list of messages consisting of dicts with "role" and "content", as used in the API parameter,
|
### Check if a message violates the moderation policy.
|
||||||
or just a simple string.
|
You can either pass a list of messages consisting of dicts with "role" and "content", as used in the API parameter,
|
||||||
|
or just a simple string.
|
||||||
|
|
||||||
Returns True if the message violates the policy, False otherwise.
|
Returns True if the message violates the policy, False otherwise.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
text = inp
|
text = inp
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue