mirror of
https://github.com/hoshikawa2/nemo_guardrails_configuration.git
synced 2026-07-09 17:04:20 +00:00
18 lines
254 B
Python
18 lines
254 B
Python
def build_oos_prompt(text):
|
|
return f"""
|
|
Verifique se o texto está fora do escopo de Telecom.
|
|
|
|
Texto:
|
|
{text}
|
|
|
|
Fora de escopo:
|
|
- política
|
|
- religião
|
|
- concorrentes
|
|
|
|
Responda JSON:
|
|
{{
|
|
"allowed": true/false,
|
|
"label": "IN_SCOPE/OUT_OF_SCOPE"
|
|
}}
|
|
""" |