File tree Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1212import google .generativeai as genai
1313from operate .config .settings import Config
1414from operate .exceptions .exceptions import ModelNotRecognizedException
15- from operate .utils .screenshot_util import (
15+ from operate .utils .screenshot import (
1616 capture_screen_with_cursor ,
1717 add_grid_to_image ,
1818 capture_mini_screenshot_with_cursor ,
1919)
20- from operate .utils .action_util import get_last_assistant_message
20+ from operate .utils .action import get_last_assistant_message
2121from operate .prompts .prompts import (
2222 format_vision_prompt ,
2323 format_accurate_mode_vision_prompt ,
2727)
2828
2929
30- from operate .utils .labeling import (
30+ from operate .utils .label import (
3131 add_labels ,
3232 parse_click_content ,
3333 get_click_position_in_percent ,
Original file line number Diff line number Diff line change 77from operate .exceptions .exceptions import ModelNotRecognizedException
88from operate .prompts .prompts import USER_QUESTION
99from operate .config .settings import Config
10- from operate .utils .styles import (
10+ from operate .utils .style import (
1111 ANSI_GREEN ,
1212 ANSI_RESET ,
1313 ANSI_BLUE ,
1616 ANSI_BRIGHT_MAGENTA ,
1717 style ,
1818)
19- from operate .utils .action_util import (
19+ from operate .utils .action import (
2020 keyboard_type ,
2121 search ,
2222 mouse_click ,
2323)
2424from operate .actions .actions import get_next_action , summarize
25- from operate .utils .utils import parse_response
25+ from operate .utils .misc import parse_response
2626
2727# Load configuration
2828config = Config ()
Original file line number Diff line number Diff line change 22Self-Operating Computer
33"""
44import argparse
5- from operate .utils .styles import ANSI_BRIGHT_MAGENTA
5+ from operate .utils .style import ANSI_BRIGHT_MAGENTA
66from operate .dialogs .dialog import main
77
88
Original file line number Diff line number Diff line change 33import time
44import math
55
6- from operate .utils .utils import convert_percent_to_decimal
6+ from operate .utils .misc import convert_percent_to_decimal
77
88
99def keyboard_type (text ):
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments