Shreyas

Shreyas094

AI & ML interests

None yet

Recent Activity

liked a model 4 days ago
agarkovv/CryptoTrader-LM
liked a Space 15 days ago
DexterSptizu/table-gpt-query-csv-file
liked a Space 15 days ago
taupirho/gradio_multi_file_rag
View all activity

Organizations

Sentinel's profile picture

Shreyas094's activity

updated a Space 22 days ago
liked a Space about 2 months ago
reacted to Jaward's post with πŸ‘ 2 months ago
reacted to maxiw's post with πŸ‘ 2 months ago
view post
Post
2127
You can now try out computer use models from the hub to automate your local machine with https://github.com/askui/vision-agent. πŸ’»

import time
from askui import VisionAgent

with VisionAgent() as agent:
    agent.tools.webbrowser.open_new("http://www.google.com")
    time.sleep(0.5)
    agent.click("search field in the center of the screen", model_name="Qwen/Qwen2-VL-7B-Instruct")
    agent.type("cats")
    agent.keyboard("enter")
    time.sleep(0.5)
    agent.click("text 'Images'", model_name="AskUI/PTA-1")
    time.sleep(0.5)
    agent.click("second cat image", model_name="OS-Copilot/OS-Atlas-Base-7B")


Currently these models are integrated with Gradio Spaces API. Also planning to add local inference soon!

Currently supported:
- Qwen/Qwen2-VL-7B-Instruct
- Qwen/Qwen2-VL-2B-Instruct
- AskUI/PTA-1
- OS-Copilot/OS-Atlas-Base-7B
Β·