patch: minor bug fixes for evaluator and task configurations, documentation update (#121)
* fix: /cursor_position api return format fix * chore: update README.md to remove deprecated command * fix: add base score for evaluators and minor bug fixes * fix: add base score for setup configurations --------- Co-authored-by: Jiaqi Deng <jiaqideng@Jiaqis-MacBook-Pro.local>
This commit is contained in:
@@ -249,9 +249,6 @@ echo -n "" >> ~/.local/share/keyrings/login.keyring
|
||||
|
||||
# Restart Chrome after applying changes
|
||||
|
||||
# Alternative Method: Disable keyring service
|
||||
sudo apt remove gnome-keyring
|
||||
|
||||
# Or just prevent Chrome from using keyring
|
||||
mkdir -p ~/.local/share/keyrings
|
||||
touch ~/.local/share/keyrings/login.keyring
|
||||
|
||||
@@ -1051,8 +1051,8 @@ def get_platform():
|
||||
|
||||
@app.route('/cursor_position', methods=['GET'])
|
||||
def get_cursor_position():
|
||||
return pyautogui.position().x, pyautogui.position().y
|
||||
|
||||
pos = pyautogui.position()
|
||||
return jsonify(pos.x, pos.y)
|
||||
|
||||
@app.route("/setup/change_wallpaper", methods=['POST'])
|
||||
def change_wallpaper():
|
||||
|
||||
Reference in New Issue
Block a user