13 lines
431 B
Python
13 lines
431 B
Python
|
|
import json
|
||
|
|
from hermes_tools import browser_navigate, browser_vision
|
||
|
|
|
||
|
|
def map_tower():
|
||
|
|
browser_navigate(url="https://tower.alexanderwhitestone.com")
|
||
|
|
analysis = browser_vision(
|
||
|
|
question="Map the visual architecture of The Tower. Identify key rooms and their relative positions. Output as a coordinate map."
|
||
|
|
)
|
||
|
|
return {"map": analysis}
|
||
|
|
|
||
|
|
if __name__ == '__main__':
|
||
|
|
print(json.dumps(map_tower(), indent=2))
|