Spaces:
Runtime error
Runtime error
| import sys | |
| from checker.fact_checker import FactChecker | |
| fc = FactChecker() | |
| query = "Mayor Rama suspends class in Cebu City due to intense heat" | |
| print("Testing:", query) | |
| result = fc.check(query) | |
| print("FINAL VERDICT:", result.get("final_verdict")) | |
| for web in result["external"].get("web_results", [])[:1]: | |
| print("TOP HIT:", web.get("title")) | |
| print("SNIPPET:", web.get("snippet")) | |
| print("RELEVANCE:", web.get("relevance_score")) | |