palbha commited on
Commit
358038a
·
verified ·
1 Parent(s): a4a096c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -24
app.py CHANGED
@@ -31,30 +31,17 @@ def search_images_for_presentation(query: str) -> str:
31
  return image_path
32
 
33
 
34
- # Modified tool to capture screenshots and return image path
35
- def save_image_from_browser(memory_step: ActionStep, agent: CodeAgent) -> None:
36
- sleep(1.0) # Allow browser elements to load
37
- driver = helium.get_driver()
38
- current_step = memory_step.step_number
39
- if driver is not None:
40
- # Capture browser screenshot
41
- png_bytes = driver.get_screenshot_as_png()
42
- image = Image.open(BytesIO(png_bytes))
43
- image_dir = "images"
44
- os.makedirs(image_dir, exist_ok=True)
45
- image_path = f"{image_dir}/captured_image_{current_step}.png"
46
-
47
- # Save image locally
48
- image.save(image_path)
49
- print(f"Captured and saved an image: {image_path}")
50
-
51
- memory_step.observations_images = [image.copy()]
52
-
53
- # Update observations with the current URL for reference:
54
- url_info = f"Current url: {driver.current_url}"
55
- memory_step.observations = (
56
- url_info if memory_step.observations is None else memory_step.observations + "\n" + url_info
57
- )
58
  return image_path
59
 
60
 
 
31
  return image_path
32
 
33
 
34
+ @tool
35
+ def save_image_from_browser(image_url: str) -> str:
36
+ """
37
+ Saves the image from the given URL to a file.
38
+ Args:
39
+ image_url: The URL of the image to be saved.
40
+ Returns:
41
+ str: The path to the saved image.
42
+ """
43
+ image_path = f"/path/to/save/directory/{image_url.split('/')[-1]}" # Example: use image's filename from URL
44
+ # Add image download and save logic here
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  return image_path
46
 
47