Use these settings for about 500 requests/day:
HongxinLi/GoClick-LargeMODEL_NAME=HongxinLi/GoClick-LargeFor the lowest bill, replace both values with HongxinLi/GoClick-Base. It loads and runs faster, but accuracy is lower.
HongxinLi/GoClick-Large.The worker finds the cached model under /runpod-volume/huggingface-cache/hub and loads it in offline mode.
Compress screenshots to JPEG quality 65–80 to reduce request size and transfer time.
export RUNPOD_ENDPOINT_ID="your-endpoint-id"
export RUNPOD_API_KEY="your-api-key"
node call-endpoint.mjs screenshot.jpg "the Send button at the bottom-right"
const screen = robot.getScreenSize();
const clickX = Math.round(output.x * screen.width / output.image_width);
const clickY = Math.round(output.y * screen.height / output.image_height);
robot.moveMouseSmooth(clickX, clickY);
robot.mouseClick();
2 commits
Python
76.1%
JavaScript
15.4%
Dockerfile
8.5%
Use these settings for about 500 requests/day:
HongxinLi/GoClick-LargeMODEL_NAME=HongxinLi/GoClick-LargeFor the lowest bill, replace both values with HongxinLi/GoClick-Base. It loads and runs faster, but accuracy is lower.
HongxinLi/GoClick-Large.The worker finds the cached model under /runpod-volume/huggingface-cache/hub and loads it in offline mode.
Compress screenshots to JPEG quality 65–80 to reduce request size and transfer time.
export RUNPOD_ENDPOINT_ID="your-endpoint-id"
export RUNPOD_API_KEY="your-api-key"
node call-endpoint.mjs screenshot.jpg "the Send button at the bottom-right"
const screen = robot.getScreenSize();
const clickX = Math.round(output.x * screen.width / output.image_width);
const clickY = Math.round(output.y * screen.height / output.image_height);
robot.moveMouseSmooth(clickX, clickY);
robot.mouseClick();
2 commits
Python
76.1%
JavaScript
15.4%
Dockerfile
8.5%