13 lines
461 B
Python
13 lines
461 B
Python
#!/usr/bin/env python3
|
|
import json
|
|
from hermes_tools import browser_navigate, browser_vision
|
|
|
|
def bypass_captcha():
|
|
analysis = browser_vision(
|
|
question="Solve the CAPTCHA on the current page. Provide the solution text or coordinate clicks required. Provide a PASS/FAIL."
|
|
)
|
|
return {"status": "PASS" if "PASS" in analysis.upper() else "FAIL", "solution": analysis}
|
|
|
|
if __name__ == '__main__':
|
|
print(json.dumps(bypass_captcha(), indent=2))
|