Arjun
Arjun copied to clipboard
fix: fix a simple python bug in heuristic.py
In python, an expression such as ("required" or "missing") in response.lower() resolves to "required" in response.lower() because "required" is a truthy value.
After reading code, I think this is not the desired action, but rather checking for the existence of either words in the response text.