13 lines
536 B
Python
13 lines
536 B
Python
import json
|
|
from hermes_tools import browser_navigate, browser_vision
|
|
|
|
def detect_glitches():
|
|
browser_navigate(url="https://matrix.alexanderwhitestone.com")
|
|
analysis = browser_vision(
|
|
question="Scan the 3D world for visual artifacts, floating assets, or z-fighting. List all coordinates/descriptions of glitches found. Provide a PASS/FAIL."
|
|
)
|
|
return {"status": "PASS" if "PASS" in analysis.upper() else "FAIL", "analysis": analysis}
|
|
|
|
if __name__ == '__main__':
|
|
print(json.dumps(detect_glitches(), indent=2))
|