-
Notifications
You must be signed in to change notification settings - Fork 2k
[UNIT] Final review of Unit 2.1 on smolagents - release 25/2/25 #216
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 34 commits
019dedf
707b648
2b6453e
bc01c88
64d235f
7608d06
59ba0dc
3b6e5fa
54a2613
74d6327
62927f4
7e10c33
f01b137
9e5aeff
713c804
a8e69eb
85c9360
b2c4fd4
b71072d
c0fb25c
2f2ef18
16d36df
9d4eeab
58af6f0
aaa9d88
f3ac071
bea42fc
5cc6141
838df38
cdbfd05
b6664e2
104c6b5
77b7fd8
65cfdd5
838f266
2aa6a7a
772483b
a3544a5
1b23d4b
c04ff37
4fdd2d4
550aac6
d76d796
37c678f
8e93760
334f87e
0a74c9d
a1312ed
bae3ba0
b1fb9a9
24f5461
ca8d7dd
273d4e7
0a072cb
804ffd6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,207 @@ | ||
| import argparse | ||
| from io import BytesIO | ||
| from time import sleep | ||
|
|
||
| import helium | ||
| from dotenv import load_dotenv | ||
| from PIL import Image | ||
| from selenium import webdriver | ||
| from selenium.webdriver.common.by import By | ||
| from selenium.webdriver.common.keys import Keys | ||
|
|
||
| from smolagents import CodeAgent, DuckDuckGoSearchTool, tool | ||
| from smolagents.agents import ActionStep | ||
| from smolagents.cli import load_model | ||
|
|
||
|
|
||
| alfred_guest_list_request = """ | ||
| I am Alfred, the butler of Wayne Manor, responsible for verifying the identity of guests at party. A superhero has arrived at the entrance claiming to be Wonder Woman, but I need to confirm if she is who she says she is. | ||
|
|
||
| Please search for images of Wonder Woman and generate a detailed visual description based on those images. Additionally, navigate to Wikipedia to gather key details about her appearance. With this information, I can determine whether to grant her access to the event. | ||
| """ | ||
|
|
||
|
|
||
| def parse_arguments(): | ||
| parser = argparse.ArgumentParser(description="Run a web browser automation script with a specified model.") | ||
| parser.add_argument( | ||
| "prompt", | ||
| type=str, | ||
| nargs="?", # Makes it optional | ||
| default=alfred_guest_list_request, | ||
| help="The prompt to run with the agent", | ||
| ) | ||
| parser.add_argument( | ||
| "--model-type", | ||
| type=str, | ||
| default="LiteLLMModel", | ||
| help="The model type to use (e.g., OpenAIServerModel, LiteLLMModel, TransformersModel, HfApiModel)", | ||
| ) | ||
| parser.add_argument( | ||
| "--model-id", | ||
| type=str, | ||
| default="gpt-4o", | ||
| help="The model ID to use for the specified model type", | ||
| ) | ||
| return parser.parse_args() | ||
|
|
||
|
|
||
| def save_screenshot(memory_step: ActionStep, agent: CodeAgent) -> None: | ||
| sleep(1.0) # Let JavaScript animations happen before taking the screenshot | ||
| driver = helium.get_driver() | ||
| current_step = memory_step.step_number | ||
| if driver is not None: | ||
| for previous_memory_step in agent.memory.steps: # Remove previous screenshots from logs for lean processing | ||
| if isinstance(previous_memory_step, ActionStep) and previous_memory_step.step_number <= current_step - 2: | ||
| previous_memory_step.observations_images = None | ||
| png_bytes = driver.get_screenshot_as_png() | ||
| image = Image.open(BytesIO(png_bytes)) | ||
| print(f"Captured a browser screenshot: {image.size} pixels") | ||
| memory_step.observations_images = [image.copy()] # Create a copy to ensure it persists, important! | ||
|
|
||
| # Update observations with current URL | ||
| url_info = f"Current url: {driver.current_url}" | ||
| memory_step.observations = ( | ||
| url_info if memory_step.observations is None else memory_step.observations + "\n" + url_info | ||
| ) | ||
| return | ||
|
|
||
|
|
||
| @tool | ||
| def search_item_ctrl_f(text: str, nth_result: int = 1) -> str: | ||
| """ | ||
| Searches for text on the current page via Ctrl + F and jumps to the nth occurrence. | ||
| Args: | ||
| text: The text to search for | ||
| nth_result: Which occurrence to jump to (default: 1) | ||
| """ | ||
| elements = driver.find_elements(By.XPATH, f"//*[contains(text(), '{text}')]") | ||
| if nth_result > len(elements): | ||
| raise Exception(f"Match n°{nth_result} not found (only {len(elements)} matches found)") | ||
| result = f"Found {len(elements)} matches for '{text}'." | ||
| elem = elements[nth_result - 1] | ||
| driver.execute_script("arguments[0].scrollIntoView(true);", elem) | ||
| result += f"Focused on element {nth_result} of {len(elements)}" | ||
| return result | ||
|
|
||
|
|
||
| @tool | ||
| def go_back() -> None: | ||
| """Goes back to previous page.""" | ||
| driver.back() | ||
|
|
||
|
|
||
| @tool | ||
| def close_popups() -> str: | ||
| """ | ||
| Closes any visible modal or pop-up on the page. Use this to dismiss pop-up windows! This does not work on cookie consent banners. | ||
| """ | ||
| webdriver.ActionChains(driver).send_keys(Keys.ESCAPE).perform() | ||
|
|
||
|
|
||
| def initialize_driver(): | ||
| """Initialize the Selenium WebDriver.""" | ||
| chrome_options = webdriver.ChromeOptions() | ||
| chrome_options.add_argument("--force-device-scale-factor=1") | ||
| chrome_options.add_argument("--window-size=1000,1350") | ||
| chrome_options.add_argument("--disable-pdf-viewer") | ||
| chrome_options.add_argument("--window-position=0,0") | ||
| return helium.start_chrome(headless=False, options=chrome_options) | ||
|
|
||
|
|
||
| def initialize_agent(model): | ||
| """Initialize the CodeAgent with the specified model.""" | ||
| return CodeAgent( | ||
| tools=[DuckDuckGoSearchTool(), go_back, close_popups, search_item_ctrl_f], | ||
| model=model, | ||
| additional_authorized_imports=["helium"], | ||
| step_callbacks=[save_screenshot], | ||
| max_steps=20, | ||
| verbosity_level=2, | ||
| ) | ||
|
|
||
|
|
||
| helium_instructions = """ | ||
| Use your web_search tool when you want to get Google search results. | ||
| Then you can use helium to access websites. Don't use helium for Google search, only for navigating websites! | ||
| Don't bother about the helium driver, it's already managed. | ||
| We've already ran "from helium import *" | ||
| Then you can go to pages! | ||
| Code: | ||
| ```py | ||
| go_to('github.com/trending') | ||
| ```<end_code> | ||
|
|
||
| You can directly click clickable elements by inputting the text that appears on them. | ||
| Code: | ||
| ```py | ||
| click("Top products") | ||
| ```<end_code> | ||
|
|
||
| If it's a link: | ||
| Code: | ||
| ```py | ||
| click(Link("Top products")) | ||
| ```<end_code> | ||
|
|
||
| If you try to interact with an element and it's not found, you'll get a LookupError. | ||
| In general stop your action after each button click to see what happens on your screenshot. | ||
| Never try to login in a page. | ||
|
|
||
| To scroll up or down, use scroll_down or scroll_up with as an argument the number of pixels to scroll from. | ||
| Code: | ||
| ```py | ||
| scroll_down(num_pixels=1200) # This will scroll one viewport down | ||
| ```<end_code> | ||
|
|
||
| When you have pop-ups with a cross icon to close, don't try to click the close icon by finding its element or targeting an 'X' element (this most often fails). | ||
| Just use your built-in tool `close_popups` to close them: | ||
| Code: | ||
| ```py | ||
| close_popups() | ||
| ```<end_code> | ||
|
|
||
| You can use .exists() to check for the existence of an element. For example: | ||
| Code: | ||
| ```py | ||
| if Text('Accept cookies?').exists(): | ||
| click('I accept') | ||
| ```<end_code> | ||
|
|
||
| Proceed in several steps rather than trying to solve the task in one shot. | ||
| And at the end, only when you have your answer, return your final answer. | ||
| Code: | ||
| ```py | ||
| final_answer("YOUR_ANSWER_HERE") | ||
| ```<end_code> | ||
|
|
||
| If pages seem stuck on loading, you might have to wait, for instance `import time` and run `time.sleep(5.0)`. But don't overuse this! | ||
| To list elements on page, DO NOT try code-based element searches like 'contributors = find_all(S("ol > li"))': just look at the latest screenshot you have and read it visually, or use your tool search_item_ctrl_f. | ||
| Of course, you can act on buttons like a user would do when navigating. | ||
| After each code blob you write, you will be automatically provided with an updated screenshot of the browser and the current browser url. | ||
| But beware that the screenshot will only be taken at the end of the whole action, it won't see intermediate states. | ||
| Don't kill the browser. | ||
| When you have modals or cookie banners on screen, you should get rid of them before you can click anything else. | ||
| """ | ||
|
|
||
|
|
||
| def main(): | ||
| # Load environment variables | ||
| load_dotenv() | ||
|
|
||
| # Parse command line arguments | ||
| args = parse_arguments() | ||
|
|
||
| # Initialize the model based on the provided arguments | ||
| model = load_model(args.model_type, args.model_id) | ||
|
|
||
| global driver | ||
| driver = initialize_driver() | ||
| agent = initialize_agent(model) | ||
|
|
||
| # Run the agent with the provided prompt | ||
| agent.python_executor("from helium import *", agent.state) | ||
| agent.run(args.prompt + helium_instructions) | ||
|
|
||
|
|
||
| if __name__ == "__main__": | ||
| main() |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,36 @@ | ||||||
| # Introduction to Agentic Frameworks | ||||||
|
|
||||||
simoninithomas marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
| <img src="https://huggingface.co/datasets/agents-course/course-images/resolve/main/en/unit2/thumbnail.jpg" alt="Thumbnail"/> | ||||||
|
|
||||||
| Welcome to this second unit, where **we'll explore different agentic frameworks** that can be used to build powerful agentic applications. | ||||||
|
|
||||||
| We will study: | ||||||
|
|
||||||
| - In Unit 2.1: [Smolagents](https://huggingface.co/docs/smolagents/en/index) | ||||||
|
||||||
| - In Unit 2.1: [Smolagents](https://huggingface.co/docs/smolagents/en/index) | |
| - In Unit 2.1: [smolagents](https://huggingface.co/docs/smolagents/en/index) |
Uh oh!
There was an error while loading. Please reload this page.