cambios menores
This commit is contained in:
@ -16,7 +16,6 @@ OLLAMA_URL = os.environ.get("OLLAMA_URL", "http://host.docker.internal:11434/api
|
||||
OLLAMA_MODEL = os.environ.get("OLLAMA_MODEL", "llama3")
|
||||
|
||||
def is_security_related(prompt):
|
||||
logging.info(f"Checking if topic is security-related: {prompt}")
|
||||
data = {
|
||||
"model": OLLAMA_MODEL,
|
||||
"prompt": f"Does the following topic relate to national defense, armed forces, police, espionage, or intelligence? Answer only with 'true' or 'false'. Topic: {prompt}",
|
||||
@ -30,7 +29,6 @@ def is_security_related(prompt):
|
||||
json_data = json.loads(line)
|
||||
if "response" in json_data and json_data["response"].strip():
|
||||
result = json_data["response"].strip().lower() == "true"
|
||||
logging.info(f"Result for '{prompt}': {result}")
|
||||
return result
|
||||
|
||||
except requests.RequestException as e:
|
||||
@ -41,7 +39,6 @@ def is_security_related(prompt):
|
||||
return False
|
||||
|
||||
def is_critico(prompt):
|
||||
logging.info(f"Checking if topic is critical of security forces: {prompt}")
|
||||
data = {
|
||||
"model": OLLAMA_MODEL,
|
||||
"prompt": f"Does the following text criticizes the armed forces, security forces as Guardia Civil or Police, intelligence agencies such as CNI? Answer only with 'true' or 'false'. Topic: {prompt}",
|
||||
@ -55,7 +52,6 @@ def is_critico(prompt):
|
||||
json_data = json.loads(line)
|
||||
if "response" in json_data and json_data["response"].strip():
|
||||
result = json_data["response"].strip().lower() == "true"
|
||||
logging.info(f"Result for '{prompt}': {result}")
|
||||
return result
|
||||
|
||||
except requests.RequestException as e:
|
||||
@ -66,7 +62,6 @@ def is_critico(prompt):
|
||||
return False
|
||||
|
||||
def is_favorable(prompt):
|
||||
logging.info(f"Checking if topic is favorable to security forces: {prompt}")
|
||||
data = {
|
||||
"model": OLLAMA_MODEL,
|
||||
"prompt": f"Does the following text favor the armed forces, security forces as Guardia Civil or Police, intelligence agencies such as CNI? Answer only with 'true' or 'false'. Topic: {prompt}",
|
||||
@ -80,7 +75,6 @@ def is_favorable(prompt):
|
||||
json_data = json.loads(line)
|
||||
if "response" in json_data and json_data["response"].strip():
|
||||
result = json_data["response"].strip().lower() == "true"
|
||||
logging.info(f"Result for '{prompt}': {result}")
|
||||
return result
|
||||
|
||||
except requests.RequestException as e:
|
||||
|
Reference in New Issue
Block a user