Skip to content

Commit

Permalink
fix: Correct screenshot path argument in process_text_api function call
Browse files Browse the repository at this point in the history
  • Loading branch information
onuratakan committed Dec 9, 2024
1 parent 9bb697d commit 6f015bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpt_computer_assistant/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def the_input(text, screen, talk):
else:
screenshot = pyautogui.screenshot()
screenshot.save(screenshot_path)
result = process_text_api(text, screenshot)
result = process_text_api(text, screenshot_path)

time.sleep(1)

Expand Down

0 comments on commit 6f015bd

Please sign in to comment.