diff --git a/notebooks/en/_toctree.yml b/notebooks/en/_toctree.yml index eee516b6..10a0bff4 100644 --- a/notebooks/en/_toctree.yml +++ b/notebooks/en/_toctree.yml @@ -117,7 +117,7 @@ isExpanded: false sections: - local: agents - title: Build an agent with tool-calling superpowers using Transformers Agents + title: Build an agent with tool-calling superpowers using smolagents - local: agent_rag title: Agentic RAG - turbocharge your RAG with query reformulation and self-query - local: agent_text_to_sql diff --git a/notebooks/en/agent_text_to_sql.ipynb b/notebooks/en/agent_text_to_sql.ipynb index 1e5e4f07..32e50f59 100644 --- a/notebooks/en/agent_text_to_sql.ipynb +++ b/notebooks/en/agent_text_to_sql.ipynb @@ -7,7 +7,7 @@ "# Agent for text-to-SQL with automatic error correction\n", "_Authored by: [Aymeric Roucher](https://huggingface.co/m-ric)_\n", "\n", - "In this tutorial, we'll see how to implement an agent that leverages SQL using `transformers.agents`.\n", + "In this tutorial, we'll see how to implement an agent that leverages SQL using `smolagents`.\n", "\n", "What's the advantage over a standard text-to-SQL pipeline?\n", "\n", diff --git a/notebooks/en/agents.ipynb b/notebooks/en/agents.ipynb index 7e92a581..82616038 100644 --- a/notebooks/en/agents.ipynb +++ b/notebooks/en/agents.ipynb @@ -4,16 +4,16 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "# Build an agent with tool-calling superpowers ๐Ÿฆธ using Transformers Agents\n", + "# Build an agent with tool-calling superpowers ๐Ÿฆธ using smolagents\n", "_Authored by: [Aymeric Roucher](https://huggingface.co/m-ric)_\n", "\n", - "This notebook demonstrates how you can use [**Transformers Agents**](https://huggingface.co/docs/transformers/en/agents) to build awesome **agents**!\n", + "This notebook demonstrates how you can use [**smolagents**](https://huggingface.co/docs/smolagents/index) to build awesome **agents**!\n", "\n", "What are **agents**? Agents are systems that are powered by an LLM and enable the LLM (with careful prompting and output parsing) to use specific *tools* to solve problems.\n", "\n", "These *tools* are basically functions that the LLM couldn't perform well by itself: for instance for a text-generation LLM like [Llama-3-70B](https://huggingface.co/meta-llama/Meta-Llama-3-70B-Instruct), this could be an image generation tool, a web search tool, a calculator...\n", "\n", - "What is **Transformers Agents**? it's an extension of our `transformers` library that provides building blocks to build your own agents! Learn more about it in the [documentation](https://huggingface.co/docs/transformers/en/agents).\n", + "What is **smolagents**? It's an library that provides building blocks to build your own agents! Learn more about it in the [documentation](https://huggingface.co/docs/smolagents/index).\n", "\n", "Let's see how to use it, and which use cases it can solve.\n", "\n", diff --git a/notebooks/en/multiagent_rag_system.ipynb b/notebooks/en/multiagent_rag_system.ipynb index 1e21120e..fc0c3f71 100644 --- a/notebooks/en/multiagent_rag_system.ipynb +++ b/notebooks/en/multiagent_rag_system.ipynb @@ -555,7 +555,7 @@ }, "outputs": [], "source": [ - "from transformers.agents import Tool\n", + "from smolagents import Tool\n", "from langchain_core.vectorstores import VectorStore\n", "\n", "class RetrieverTool(Tool):\n", diff --git a/notebooks/en/multiagent_web_assistant.ipynb b/notebooks/en/multiagent_web_assistant.ipynb index 84d62e28..79796577 100644 --- a/notebooks/en/multiagent_web_assistant.ipynb +++ b/notebooks/en/multiagent_web_assistant.ipynb @@ -41,7 +41,7 @@ "metadata": {}, "outputs": [], "source": [ - "!pip install markdownify duckduckgo-search \"transformers[agents]\" --upgrade -q" + "!pip install markdownify duckduckgo-search smolagents --upgrade -q" ] }, { @@ -73,11 +73,11 @@ }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 6, "metadata": {}, "outputs": [], "source": [ - "model = \"Qwen/Qwen2.5-72B-Instruct\"" + "model_id = \"Qwen/Qwen2.5-72B-Instruct\"" ] }, { @@ -96,7 +96,7 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 8, "metadata": {}, "outputs": [], "source": [ @@ -104,7 +104,7 @@ "import requests\n", "from markdownify import markdownify as md\n", "from requests.exceptions import RequestException\n", - "from transformers.agents import tool\n", + "from smolagents import tool\n", "\n", "\n", "@tool\n", @@ -145,14 +145,14 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 9, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "Hugging Face \\- Wikipedia\n", + "Hugging Face - Wikipedia\n", "\n", "[Jump to content](#bodyContent)\n", "\n", @@ -162,15 +162,14 @@ "move to sidebar\n", "hide\n", "\n", - " Navigation\n", - " \n", + "Navigation\n", "\n", "* [Main page](/wiki/Main_Page \"Visit the main page [z]\")\n", "* [Contents](/wiki/Wikipedia:Contents \"Guides to browsing Wikipedia\")\n", "* [Current events](/wiki/Portal:Current_events \"Articles related to current events\")\n", "* [Random article](/wiki/Special:Random \"Visit a randomly selected article [x]\")\n", "* [About Wikipedia](/wiki/Wikipedia:About \"Learn about Wikipedia and how it works\")\n", - "* [Co\n" + "* [Contac\n" ] } ], @@ -193,23 +192,23 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 10, "metadata": {}, "outputs": [], "source": [ - "from transformers.agents import (\n", - " ReactCodeAgent,\n", - " ReactJsonAgent,\n", - " HfApiEngine,\n", + "from smolagents import (\n", + " CodeAgent,\n", + " ToolCallingAgent,\n", + " HfApiModel,\n", " ManagedAgent,\n", + " DuckDuckGoSearchTool\n", ")\n", - "from transformers.agents.search import DuckDuckGoSearchTool\n", "\n", - "llm_engine = HfApiEngine(model)\n", + "model = HfApiModel(model_id)\n", "\n", - "web_agent = ReactJsonAgent(\n", + "web_agent = ToolCallingAgent(\n", " tools=[DuckDuckGoSearchTool(), visit_webpage],\n", - " llm_engine=llm_engine,\n", + " model=model,\n", " max_iterations=10,\n", ")" ] @@ -223,13 +222,13 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 15, "metadata": {}, "outputs": [], "source": [ "managed_web_agent = ManagedAgent(\n", " agent=web_agent,\n", - " name=\"search\",\n", + " name=\"search_agent\",\n", " description=\"Runs web searches for you. Give it your query as an argument.\",\n", ")" ] @@ -247,13 +246,13 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": 16, "metadata": {}, "outputs": [], "source": [ - "manager_agent = ReactCodeAgent(\n", + "manager_agent = CodeAgent(\n", " tools=[],\n", - " llm_engine=llm_engine,\n", + " model=model,\n", " managed_agents=[managed_web_agent],\n", " additional_authorized_imports=[\"time\", \"datetime\"],\n", ")" @@ -268,90 +267,566 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 17, "metadata": {}, "outputs": [ { - "name": "stderr", - "output_type": "stream", - "text": [ - "\u001b[32;20;1m======== New task ========\u001b[0m\n", - "\u001b[37;1mHow many years ago was Stripe founded?\u001b[0m\n", - "\u001b[33;1m=== Agent thoughts:\u001b[0m\n", - "\u001b[0mThought: I need to find out when Stripe was founded and then calculate the number of years since then. I will start by using the `search` tool to find the founding year of Stripe.\u001b[0m\n", - "\u001b[33;1m>>> Agent is executing the code below:\u001b[0m\n", - "\u001b[0m\u001b[38;5;7mfounding_year\u001b[39m\u001b[38;5;7m \u001b[39m\u001b[38;5;109;01m=\u001b[39;00m\u001b[38;5;7m \u001b[39m\u001b[38;5;7msearch\u001b[39m\u001b[38;5;7m(\u001b[39m\u001b[38;5;144m\"\u001b[39m\u001b[38;5;144mWhen was Stripe founded\u001b[39m\u001b[38;5;144m\"\u001b[39m\u001b[38;5;7m)\u001b[39m\n", - "\u001b[38;5;109mprint\u001b[39m\u001b[38;5;7m(\u001b[39m\u001b[38;5;144m\"\u001b[39m\u001b[38;5;144mFounding year:\u001b[39m\u001b[38;5;144m\"\u001b[39m\u001b[38;5;7m,\u001b[39m\u001b[38;5;7m \u001b[39m\u001b[38;5;7mfounding_year\u001b[39m\u001b[38;5;7m)\u001b[39m\u001b[0m\n", - "\u001b[33;1m====\u001b[0m\n", - "\u001b[32;20;1m======== New task ========\u001b[0m\n", - "\u001b[37;1mYou're a helpful agent named 'search'.\n", - "You have been submitted this task by your manager.\n", - "---\n", - "Task:\n", - "When was Stripe founded\n", - "---\n", - "You're helping your manager solve a wider task: so make sure to not provide a one-line answer, but give as much information as possible so that they have a clear understanding of the answer.\n", - "\n", - "Your final_answer WILL HAVE to contain these parts:\n", - "### 1. Task outcome (short version):\n", - "### 2. Task outcome (extremely detailed version):\n", - "### 3. Additional context (if relevant):\n", - "\n", - "Put all these in your final_answer tool, everything that you do not pass as an argument to final_answer will be lost.\n", - "And even if your task resolution is not successful, please return as much context as possible, so that your manager can act upon this feedback.\u001b[0m\n", - "\u001b[33;1m=== Agent thoughts:\u001b[0m\n", - "\u001b[0mThought: I need to find the founding year of Stripe and related details. The best way to start is by performing a web search.\u001b[0m\n", - "\u001b[33;1m>>> Calling tool: 'web_search' with arguments: {'query': 'When was Stripe founded'}\u001b[0m\n", - "\u001b[33;1m=== Agent thoughts:\u001b[0m\n", - "\u001b[0mThought: The search results provide information on when Stripe was founded and additional details about the company. I will now visit the Stripe Wikipedia page for a more detailed overview.\u001b[0m\n", - "\u001b[33;1m>>> Calling tool: 'visit_webpage' with arguments: {'url': 'https://en.wikipedia.org/wiki/Stripe,_Inc.'}\u001b[0m\n", - "\u001b[33;1m=== Agent thoughts:\u001b[0m\n", - "\u001b[0mThought: I have collected detailed information about Stripe from the Wikipedia page. Now, I will formulate a comprehensive final answer as required for the task.\u001b[0m\n", - "\u001b[33;1m>>> Calling tool: 'final_answer' with arguments: {'answer': \"### 1. Task Outcome (short version):\\nStripe, Inc. was founded in 2010 by Irish brothers John Collison and Patrick Collison, who serve as the company's president and CEO, respectively. The company is headquartered in South San Francisco, California, and Dublin, Ireland. Stripe provides payment processing and financial services for businesses, enabling them to accept payments and manage financial transactions online.\\n\\n### 2. Task Outcome (extremely detailed version):\\nStripe, Inc. is an Irish-American multinational financial services and software as a service (SaaS) company co-founded in 2010 by John Collison and Patrick Collison, two Irish brothers. The company is dual-headquartered in South San Francisco, California, and Dublin, Ireland. Stripe offers a wide range of financial services and tools, primarily focused on payment processing and management for businesses. Some key milestones and details include:\\n\\n- **Founding and Early Years:** The company was founded in 2010 in Palo Alto, California. In 2011, it received a $2 million investment from notable figures such as Elon Musk, Peter Thiel, and venture capital firms like Sequoia Capital. In 2012, Stripe launched its first multiparty payments solution, Stripe Connect.\\n- **Growth and Expansion:** Stripe has rapidly expanded its services and reach. In 2013, it made its first acquisition, Kickoff, a chat and task management application. In 2016, Stripe launched Atlas, a platform to help startups register as U.S. corporations. The company has continued to grow, raising significant rounds of funding and expanding its services to new markets, including Europe and Africa.\\n- **Product Suite:** Stripe offers a comprehensive suite of financial tools, including payment processing, billing, fraud prevention, point-of-sale solutions, and more. Notable products include Radar (anti-fraud tools), Terminal (point-of-sale hardware), and Stripe Capital (merchant cash advances).\\n- **Partnerships and Integrations:** Stripe has formed partnerships with major companies such as Ford, Spotify, and Twitter to handle transactions and payments. It has also launched the Stripe App Marketplace, allowing businesses to integrate third-party apps and services.\\n- **Valuation and Funding:** As of the latest data, Stripe has raised over $6.5 billion in funding and is valued at around $70 billion, making it one of the most valuable privately-held startups globally.\\n- **Challenges and Layoffs:** In 2022, Stripe announced layoffs, cutting 14% of its workforce to prepare for leaner times. However, the company continues to innovate and expand its offerings.\\n\\n### 3. Additional Context (if relevant):\\n- **Impact on the Founders:** John and Patrick Collison have been influential in shaping the fintech industry. Their vision and leadership have driven Stripe's success and innovation.\\n- **Industry Position:** Stripe is a leader in the fintech sector, competing with other payment processors and financial service providers. Its robust product suite and global reach have solidified its position in the market.\\n- **Future Outlook:** Stripe continues to invest in new technologies and services, including AI and carbon capture initiatives. The company's focus on innovation and customer needs positions it well for future growth.\"}\u001b[0m\n", - "\u001b[33;1mPrint outputs:\u001b[0m\n", - "\u001b[32;20mFounding year: ### 1. Task Outcome (short version):\n", - "Stripe, Inc. was founded in 2010 by Irish brothers John Collison and Patrick Collison, who serve as the company's president and CEO, respectively. The company is headquartered in South San Francisco, California, and Dublin, Ireland. Stripe provides payment processing and financial services for businesses, enabling them to accept payments and manage financial transactions online.\n", - "\n", - "### 2. Task Outcome (extremely detailed version):\n", - "Stripe, Inc. is an Irish-American multinational financial services and software as a service (SaaS) company co-founded in 2010 by John Collison and Patrick Collison, two Irish brothers. The company is dual-headquartered in South San Francisco, California, and Dublin, Ireland. Stripe offers a wide range of financial services and tools, primarily focused on payment processing and management for businesses. Some key milestones and details include:\n", - "\n", - "- **Founding and Early Years:** The company was founded in 2010 in Palo Alto, California. In 2011, it received a $2 million investment from notable figures such as Elon Musk, Peter Thiel, and venture capital firms like Sequoia Capital. In 2012, Stripe launched its first multiparty payments solution, Stripe Connect.\n", - "- **Growth and Expansion:** Stripe has rapidly expanded its services and reach. In 2013, it made its first acquisition, Kickoff, a chat and task management application. In 2016, Stripe launched Atlas, a platform to help startups register as U.S. corporations. The company has continued to grow, raising significant rounds of funding and expanding its services to new markets, including Europe and Africa.\n", - "- **Product Suite:** Stripe offers a comprehensive suite of financial tools, including payment processing, billing, fraud prevention, point-of-sale solutions, and more. Notable products include Radar (anti-fraud tools), Terminal (point-of-sale hardware), and Stripe Capital (merchant cash advances).\n", - "- **Partnerships and Integrations:** Stripe has formed partnerships with major companies such as Ford, Spotify, and Twitter to handle transactions and payments. It has also launched the Stripe App Marketplace, allowing businesses to integrate third-party apps and services.\n", - "- **Valuation and Funding:** As of the latest data, Stripe has raised over $6.5 billion in funding and is valued at around $70 billion, making it one of the most valuable privately-held startups globally.\n", - "- **Challenges and Layoffs:** In 2022, Stripe announced layoffs, cutting 14% of its workforce to prepare for leaner times. However, the company continues to innovate and expand its offerings.\n", - "\n", - "### 3. Additional Context (if relevant):\n", - "- **Impact on the Founders:** John and Patrick Collison have been influential in shaping the fintech industry. Their vision and leadership have driven Stripe's success and innovation.\n", - "- **Industry Position:** Stripe is a leader in the fintech sector, competing with other payment processors and financial service providers. Its robust product suite and global reach have solidified its position in the market.\n", - "- **Future Outlook:** Stripe continues to invest in new technologies and services, including AI and carbon capture initiatives. The company's focus on innovation and customer needs positions it well for future growth.\n", - "\u001b[0m\n", - "\u001b[33;1m=== Agent thoughts:\u001b[0m\n", - "\u001b[0mThought: The search result shows that Stripe was founded in 2010. Now I need to calculate how many years ago that was. I will use the current year to make this calculation.\u001b[0m\n", - "\u001b[33;1m>>> Agent is executing the code below:\u001b[0m\n", - "\u001b[0m\u001b[38;5;109;01mimport\u001b[39;00m\u001b[38;5;7m \u001b[39m\u001b[38;5;109mdatetime\u001b[39m\n", - "\n", - "\u001b[38;5;7mcurrent_year\u001b[39m\u001b[38;5;7m \u001b[39m\u001b[38;5;109;01m=\u001b[39;00m\u001b[38;5;7m \u001b[39m\u001b[38;5;7mdatetime\u001b[39m\u001b[38;5;109;01m.\u001b[39;00m\u001b[38;5;7mdatetime\u001b[39m\u001b[38;5;109;01m.\u001b[39;00m\u001b[38;5;7mnow\u001b[39m\u001b[38;5;7m(\u001b[39m\u001b[38;5;7m)\u001b[39m\u001b[38;5;109;01m.\u001b[39;00m\u001b[38;5;7myear\u001b[39m\n", - "\u001b[38;5;7mfounding_year\u001b[39m\u001b[38;5;7m \u001b[39m\u001b[38;5;109;01m=\u001b[39;00m\u001b[38;5;7m \u001b[39m\u001b[38;5;139m2010\u001b[39m\n", - "\u001b[38;5;7myears_since_founded\u001b[39m\u001b[38;5;7m \u001b[39m\u001b[38;5;109;01m=\u001b[39;00m\u001b[38;5;7m \u001b[39m\u001b[38;5;7mcurrent_year\u001b[39m\u001b[38;5;7m \u001b[39m\u001b[38;5;109;01m-\u001b[39;00m\u001b[38;5;7m \u001b[39m\u001b[38;5;7mfounding_year\u001b[39m\n", - "\u001b[38;5;7mfinal_answer\u001b[39m\u001b[38;5;7m(\u001b[39m\u001b[38;5;7myears_since_founded\u001b[39m\u001b[38;5;7m)\u001b[39m\u001b[0m\n", - "\u001b[33;1m====\u001b[0m\n", - "\u001b[33;1mPrint outputs:\u001b[0m\n", - "\u001b[32;20m\u001b[0m\n", - "\u001b[33;1mLast output from code snippet:\u001b[0m\n", - "\u001b[32;20m14\u001b[0m\n", - "\u001b[32;20;1mFinal answer:\u001b[0m\n", - "\u001b[32;20m14\u001b[0m\n" - ] + "data": { + "text/html": [ + "
โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ New run โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ\n",
+       "โ”‚                                                                                                                 โ”‚\n",
+       "โ”‚ How many years ago was Stripe founded?                                                                          โ”‚\n",
+       "โ”‚                                                                                                                 โ”‚\n",
+       "โ•ฐโ”€ HfApiModel - Qwen/Qwen2.5-72B-Instruct โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[38;2;212;183;2mโ•ญโ”€\u001b[0m\u001b[38;2;212;183;2mโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€\u001b[0m\u001b[38;2;212;183;2m \u001b[0m\u001b[1;38;2;212;183;2mNew run\u001b[0m\u001b[38;2;212;183;2m \u001b[0m\u001b[38;2;212;183;2mโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€\u001b[0m\u001b[38;2;212;183;2mโ”€โ•ฎ\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[1mHow many years ago was Stripe founded?\u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ•ฐโ”€\u001b[0m\u001b[38;2;212;183;2m HfApiModel - Qwen/Qwen2.5-72B-Instruct \u001b[0m\u001b[38;2;212;183;2mโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€\u001b[0m\u001b[38;2;212;183;2mโ”€โ•ฏ\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” Step 0 โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[38;2;212;183;2mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” \u001b[0m\u001b[1mStep \u001b[0m\u001b[1;36m0\u001b[0m\u001b[38;2;212;183;2m โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
โ•ญโ”€ Executing this code: โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ\n",
+       "โ”‚   1 found_year = search_agent(request=\"When was Stripe founded?\")                                               โ”‚\n",
+       "โ”‚   2 print(found_year)                                                                                           โ”‚\n",
+       "โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ\n",
+       "
\n" + ], + "text/plain": [ + "โ•ญโ”€ \u001b[1mExecuting this code:\u001b[0m โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ\n", + "โ”‚ \u001b[1;38;2;227;227;221;48;2;39;40;34m \u001b[0m\u001b[38;2;101;102;96;48;2;39;40;34m1 \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mfound_year\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34msearch_agent\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mrequest\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34mWhen was Stripe founded?\u001b[0m\u001b[38;2;230;219;116;48;2;39;40;34m\"\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m โ”‚\n", + "โ”‚ \u001b[1;38;2;227;227;221;48;2;39;40;34m \u001b[0m\u001b[38;2;101;102;96;48;2;39;40;34m2 \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mprint\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mfound_year\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m โ”‚\n", + "โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ New run โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ\n",
+       "โ”‚                                                                                                                 โ”‚\n",
+       "โ”‚ You're a helpful agent named 'search_agent'.                                                                    โ”‚\n",
+       "โ”‚ You have been submitted this task by your manager.                                                              โ”‚\n",
+       "โ”‚ ---                                                                                                             โ”‚\n",
+       "โ”‚ Task:                                                                                                           โ”‚\n",
+       "โ”‚ When was Stripe founded?                                                                                        โ”‚\n",
+       "โ”‚ ---                                                                                                             โ”‚\n",
+       "โ”‚ You're helping your manager solve a wider task: so make sure to not provide a one-line answer, but give as much โ”‚\n",
+       "โ”‚ information as possible to give them a clear understanding of the answer.                                       โ”‚\n",
+       "โ”‚                                                                                                                 โ”‚\n",
+       "โ”‚ Your final_answer WILL HAVE to contain these parts:                                                             โ”‚\n",
+       "โ”‚ ### 1. Task outcome (short version):                                                                            โ”‚\n",
+       "โ”‚ ### 2. Task outcome (extremely detailed version):                                                               โ”‚\n",
+       "โ”‚ ### 3. Additional context (if relevant):                                                                        โ”‚\n",
+       "โ”‚                                                                                                                 โ”‚\n",
+       "โ”‚ Put all these in your final_answer tool, everything that you do not pass as an argument to final_answer will be โ”‚\n",
+       "โ”‚ lost.                                                                                                           โ”‚\n",
+       "โ”‚ And even if your task resolution is not successful, please return as much context as possible, so that your     โ”‚\n",
+       "โ”‚ manager can act upon this feedback.                                                                             โ”‚\n",
+       "โ”‚ {additional_prompting}                                                                                          โ”‚\n",
+       "โ”‚                                                                                                                 โ”‚\n",
+       "โ•ฐโ”€ HfApiModel - Qwen/Qwen2.5-72B-Instruct โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[38;2;212;183;2mโ•ญโ”€\u001b[0m\u001b[38;2;212;183;2mโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€\u001b[0m\u001b[38;2;212;183;2m \u001b[0m\u001b[1;38;2;212;183;2mNew run\u001b[0m\u001b[38;2;212;183;2m \u001b[0m\u001b[38;2;212;183;2mโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€\u001b[0m\u001b[38;2;212;183;2mโ”€โ•ฎ\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[1mYou're a helpful agent named 'search_agent'.\u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[1mYou have been submitted this task by your manager.\u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[1m---\u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[1mTask:\u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[1mWhen was Stripe founded?\u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[1m---\u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[1mYou're helping your manager solve a wider task: so make sure to not provide a one-line answer, but give as much\u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[1minformation as possible to give them a clear understanding of the answer.\u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[1mYour final_answer WILL HAVE to contain these parts:\u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[1m### 1. Task outcome (short version):\u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[1m### 2. Task outcome (extremely detailed version):\u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[1m### 3. Additional context (if relevant):\u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[1mPut all these in your final_answer tool, everything that you do not pass as an argument to final_answer will be\u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[1mlost.\u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[1mAnd even if your task resolution is not successful, please return as much context as possible, so that your \u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[1mmanager can act upon this feedback.\u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[1m{additional_prompting}\u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ”‚\u001b[0m \u001b[38;2;212;183;2mโ”‚\u001b[0m\n", + "\u001b[38;2;212;183;2mโ•ฐโ”€\u001b[0m\u001b[38;2;212;183;2m HfApiModel - Qwen/Qwen2.5-72B-Instruct \u001b[0m\u001b[38;2;212;183;2mโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€\u001b[0m\u001b[38;2;212;183;2mโ”€โ•ฏ\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” Step 0 โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[38;2;212;183;2mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” \u001b[0m\u001b[1mStep \u001b[0m\u001b[1;36m0\u001b[0m\u001b[38;2;212;183;2m โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ\n",
+       "โ”‚ Calling tool: 'web_search' with arguments: {'query': 'When was Stripe founded'}                                 โ”‚\n",
+       "โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ\n",
+       "
\n" + ], + "text/plain": [ + "โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ\n", + "โ”‚ Calling tool: 'web_search' with arguments: {'query': 'When was Stripe founded'} โ”‚\n", + "โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Observations: ## Search Results\n",
+       "\n",
+       "[Stripe, Inc. - Wikipedia](https://en.wikipedia.org/wiki/Stripe,_Inc.)\n",
+       "Stripe, Inc. is an Irish-American [3] multinational financial services and software as a service (SaaS) ... Irish \n",
+       "entrepreneur brothers John and Patrick Collison founded Stripe in Palo Alto, California, in 2010, [9] and serve as \n",
+       "the company's president [10] and CEO, [11] respectively.\n",
+       "\n",
+       "[The Collison Brothers and Story Behind The Founding Of \n",
+       "Stripe](https://www.startupgrind.com/blog/the-collison-brothers-and-story-behind-the-founding-of-stripe/)\n",
+       "Stripe is a payment platform that aims to give developers the tools they need to create the most secure and novel \n",
+       "buying experiences. The company was founded in 2010 by brothers Patrick and John Collison, who started working on \n",
+       "it while they were still in high school and college.\n",
+       "\n",
+       "[Stripe's Founders: The Story of Collison Brothers - \n",
+       "KITRUM](https://kitrum.com/blog/stripe-founders-the-story-of-collison-brothers/)\n",
+       "The factors contributing to Stripe's rise in popularity. Back in May 2011, Stripe acquired a $2 million investment \n",
+       "from a group of venture capitalists, including Peter Thiel, Elon Musk, Sequoia Capital, SV Angel, and Andreessen \n",
+       "Horowitz. Stripe then launched publicly in September 2011 after a lengthy private beta period.\n",
+       "\n",
+       "[Stripe, Inc. - Simple English Wikipedia, the free encyclopedia](https://simple.wikipedia.org/wiki/Stripe,_Inc.)\n",
+       "Stripe, Inc. is an Irish-American financial services and software as a service (SaaS) company. It is headquartered \n",
+       "in South San Francisco, California, United States and Dublin, Ireland. [1] [2] The company offers payment software \n",
+       "for e-commerce websites and mobile applications. Stripe was founded in Palo Alto, California in 2009.\n",
+       "\n",
+       "[Stripe | Company Overview & News - Forbes](https://www.forbes.com/companies/stripe/)\n",
+       "More than $1 trillion in payments now pass through Stripe's software on behalf of customers, a milestone reached \n",
+       "just over 12 years after its first product launch in 2011. ... Founded 2009 ...\n",
+       "\n",
+       "[Building a $95 Billion Startup: The Stripe Story - Wishpond \n",
+       "Blog](https://blog.wishpond.com/post/115675438299/stripe-startup)\n",
+       "Stripe Background: How Stripe Was Started. Stripe was founded 11 years ago by John and Patrick Collison, aged 19 \n",
+       "and 21 at the time. Hailing from Dromineer, a small town on the shores of Lough Derg in County Tipperary, Ireland, \n",
+       "both the brothers were academically gifted and showed a special interest in math and physics from a very young age.\n",
+       "\n",
+       "[Stripe History: Founding, Timeline, and Milestones - Zippia](https://www.zippia.com/stripe-careers-39818/history/)\n",
+       "Stripe was founded in 2010 by Irish entrepreneurs Patrick and John Collison. John and Patrick first started working\n",
+       "on Stripe in early 2010. In early 2010 John and Patrick began working on Stripe together. In 2010 he co-founded \n",
+       "Commonred which was acquired by Income.com.\n",
+       "\n",
+       "[The Collison Brothers: The Story Behind The Founding Of \n",
+       "Stripe](https://medium.com/startup-grind/the-collison-brothers-the-story-behind-the-founding-of-stripe-ae013434c080\n",
+       ")\n",
+       "In 2012, we updated this piece to reflect Bloomberg's latest report that Stripe had just raised an $18MM round with\n",
+       "Sequoia at a $100MM valuation. On July 28th, 2015 Stripe announced even biggerโ€ฆ\n",
+       "\n",
+       "[Stripe co-founder and CEO Patrick Collison on \"prizing the small \n",
+       "...](https://newsroom.haas.berkeley.edu/stripe-co-founder-and-ceo-patrick-collison-on-founding-a-company-that-shoul\n",
+       "d-have-already-existed/)\n",
+       "Stripe was born when Patrick and John looked for a payment platform but couldn't find all of the features they \n",
+       "thought would be important. And Stripe debuted in 2010 and grew exponentially because the product is really simple \n",
+       "for businesses to implement. Of course, the back end is anything but simple, but it's easy on the front end for ...\n",
+       "\n",
+       "[What is Stripe and why is the State investing $50 million in \n",
+       "it?](https://www.irishtimes.com/business/technology/what-is-stripe-and-why-is-the-state-investing-50-million-in-it-\n",
+       "1.4510680)\n",
+       "They founded Stripe two years later, which became a tech unicorn - that is a privately-owned company worth more \n",
+       "than $1 billion in 2014. John was named the world's youngest self-made ...\n",
+       "
\n" + ], + "text/plain": [ + "Observations: ## Search Results\n", + "\n", + "\u001b[1m[\u001b[0mStripe, Inc. - Wikipedia\u001b[1m]\u001b[0m\u001b[1m(\u001b[0m\u001b[4;94mhttps://en.wikipedia.org/wiki/Stripe,_Inc.\u001b[0m\u001b[4;94m)\u001b[0m\n", + "Stripe, Inc. is an Irish-American \u001b[1m[\u001b[0m\u001b[1;36m3\u001b[0m\u001b[1m]\u001b[0m multinational financial services and software as a service \u001b[1m(\u001b[0mSaaS\u001b[1m)\u001b[0m \u001b[33m...\u001b[0m Irish \n", + "entrepreneur brothers John and Patrick Collison founded Stripe in Palo Alto, California, in \u001b[1;36m2010\u001b[0m, \u001b[1m[\u001b[0m\u001b[1;36m9\u001b[0m\u001b[1m]\u001b[0m and serve as \n", + "the company's president \u001b[1m[\u001b[0m\u001b[1;36m10\u001b[0m\u001b[1m]\u001b[0m and CEO, \u001b[1m[\u001b[0m\u001b[1;36m11\u001b[0m\u001b[1m]\u001b[0m respectively.\n", + "\n", + "\u001b[1m[\u001b[0mThe Collison Brothers and Story Behind The Founding Of \n", + "Stripe\u001b[1m]\u001b[0m\u001b[1m(\u001b[0m\u001b[4;94mhttps://www.startupgrind.com/blog/the-collison-brothers-and-story-behind-the-founding-of-stripe/\u001b[0m\u001b[4;94m)\u001b[0m\n", + "Stripe is a payment platform that aims to give developers the tools they need to create the most secure and novel \n", + "buying experiences. The company was founded in \u001b[1;36m2010\u001b[0m by brothers Patrick and John Collison, who started working on \n", + "it while they were still in high school and college.\n", + "\n", + "\u001b[1m[\u001b[0mStripe's Founders: The Story of Collison Brothers - \n", + "KITRUM\u001b[1m]\u001b[0m\u001b[1m(\u001b[0m\u001b[4;94mhttps://kitrum.com/blog/stripe-founders-the-story-of-collison-brothers/\u001b[0m\u001b[4;94m)\u001b[0m\n", + "The factors contributing to Stripe's rise in popularity. Back in May \u001b[1;36m2011\u001b[0m, Stripe acquired a $\u001b[1;36m2\u001b[0m million investment \n", + "from a group of venture capitalists, including Peter Thiel, Elon Musk, Sequoia Capital, SV Angel, and Andreessen \n", + "Horowitz. Stripe then launched publicly in September \u001b[1;36m2011\u001b[0m after a lengthy private beta period.\n", + "\n", + "\u001b[1m[\u001b[0mStripe, Inc. - Simple English Wikipedia, the free encyclopedia\u001b[1m]\u001b[0m\u001b[1m(\u001b[0m\u001b[4;94mhttps://simple.wikipedia.org/wiki/Stripe,_Inc.\u001b[0m\u001b[4;94m)\u001b[0m\n", + "Stripe, Inc. is an Irish-American financial services and software as a service \u001b[1m(\u001b[0mSaaS\u001b[1m)\u001b[0m company. It is headquartered \n", + "in South San Francisco, California, United States and Dublin, Ireland. \u001b[1m[\u001b[0m\u001b[1;36m1\u001b[0m\u001b[1m]\u001b[0m \u001b[1m[\u001b[0m\u001b[1;36m2\u001b[0m\u001b[1m]\u001b[0m The company offers payment software \n", + "for e-commerce websites and mobile applications. Stripe was founded in Palo Alto, California in \u001b[1;36m2009\u001b[0m.\n", + "\n", + "\u001b[1m[\u001b[0mStripe | Company Overview & News - Forbes\u001b[1m]\u001b[0m\u001b[1m(\u001b[0m\u001b[4;94mhttps://www.forbes.com/companies/stripe/\u001b[0m\u001b[4;94m)\u001b[0m\n", + "More than $\u001b[1;36m1\u001b[0m trillion in payments now pass through Stripe's software on behalf of customers, a milestone reached \n", + "just over \u001b[1;36m12\u001b[0m years after its first product launch in \u001b[1;36m2011\u001b[0m. \u001b[33m...\u001b[0m Founded \u001b[1;36m2009\u001b[0m \u001b[33m...\u001b[0m\n", + "\n", + "\u001b[1m[\u001b[0mBuilding a $\u001b[1;36m95\u001b[0m Billion Startup: The Stripe Story - Wishpond \n", + "Blog\u001b[1m]\u001b[0m\u001b[1m(\u001b[0m\u001b[4;94mhttps://blog.wishpond.com/post/115675438299/stripe-startup\u001b[0m\u001b[4;94m)\u001b[0m\n", + "Stripe Background: How Stripe Was Started. Stripe was founded \u001b[1;36m11\u001b[0m years ago by John and Patrick Collison, aged \u001b[1;36m19\u001b[0m \n", + "and \u001b[1;36m21\u001b[0m at the time. Hailing from Dromineer, a small town on the shores of Lough Derg in County Tipperary, Ireland, \n", + "both the brothers were academically gifted and showed a special interest in math and physics from a very young age.\n", + "\n", + "\u001b[1m[\u001b[0mStripe History: Founding, Timeline, and Milestones - Zippia\u001b[1m]\u001b[0m\u001b[1m(\u001b[0m\u001b[4;94mhttps://www.zippia.com/stripe-careers-39818/history/\u001b[0m\u001b[4;94m)\u001b[0m\n", + "Stripe was founded in \u001b[1;36m2010\u001b[0m by Irish entrepreneurs Patrick and John Collison. John and Patrick first started working\n", + "on Stripe in early \u001b[1;36m2010\u001b[0m. In early \u001b[1;36m2010\u001b[0m John and Patrick began working on Stripe together. In \u001b[1;36m2010\u001b[0m he co-founded \n", + "Commonred which was acquired by Income.com.\n", + "\n", + "\u001b[1m[\u001b[0mThe Collison Brothers: The Story Behind The Founding Of \n", + "Stripe\u001b[1m]\u001b[0m\u001b[1m(\u001b[0m\u001b[4;94mhttps://medium.com/startup-grind/the-collison-brothers-the-story-behind-the-founding-of-stripe-ae013434c080\u001b[0m\n", + "\u001b[4;94m)\u001b[0m\n", + "In \u001b[1;36m2012\u001b[0m, we updated this piece to reflect Bloomberg's latest report that Stripe had just raised an $18MM round with\n", + "Sequoia at a $100MM valuation. On July 28th, \u001b[1;36m2015\u001b[0m Stripe announced even biggerโ€ฆ\n", + "\n", + "\u001b[1m[\u001b[0mStripe co-founder and CEO Patrick Collison on \"prizing the small \n", + "\u001b[33m...\u001b[0m\u001b[1m]\u001b[0m\u001b[1m(\u001b[0m\u001b[4;94mhttps://newsroom.haas.berkeley.edu/stripe-co-founder-and-ceo-patrick-collison-on-founding-a-company-that-shoul\u001b[0m\n", + "\u001b[4;94md-have-already-existed/\u001b[0m\u001b[4;94m)\u001b[0m\n", + "Stripe was born when Patrick and John looked for a payment platform but couldn't find all of the features they \n", + "thought would be important. And Stripe debuted in \u001b[1;36m2010\u001b[0m and grew exponentially because the product is really simple \n", + "for businesses to implement. Of course, the back end is anything but simple, but it's easy on the front end for \u001b[33m...\u001b[0m\n", + "\n", + "\u001b[1m[\u001b[0mWhat is Stripe and why is the State investing $\u001b[1;36m50\u001b[0m million in \n", + "it?\u001b[1m]\u001b[0m\u001b[1m(\u001b[0m\u001b[4;94mhttps://www.irishtimes.com/business/technology/what-is-stripe-and-why-is-the-state-investing-50-million-in-it-\u001b[0m\n", + "\u001b[4;94m1.4510680\u001b[0m\u001b[4;94m)\u001b[0m\n", + "They founded Stripe two years later, which became a tech unicorn - that is a privately-owned company worth more \n", + "than $\u001b[1;36m1\u001b[0m billion in \u001b[1;36m2014\u001b[0m. John was named the world's youngest self-made \u001b[33m...\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
[Step 0: Duration 3.77 seconds| Input tokens: 1,599 | Output tokens: 20]\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[2m[Step 0: Duration 3.77 seconds| Input tokens: 1,599 | Output tokens: 20]\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” Step 1 โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[38;2;212;183;2mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” \u001b[0m\u001b[1mStep \u001b[0m\u001b[1;36m1\u001b[0m\u001b[38;2;212;183;2m โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ\n",
+       "โ”‚ Calling tool: 'final_answer' with arguments: {'answer': '### 1. Task outcome (short version):\\\\\\\\\\\\\\\\nStripe    โ”‚\n",
+       "โ”‚ was founded in 2010.\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\n### 2. Task outcome (extremely detailed version):\\\\\\\\\\\\\\\\nStripe, Inc.    โ”‚\n",
+       "โ”‚ was founded in 2010 by Irish brothers John and Patrick Collison. The company, which offers payment software for โ”‚\n",
+       "โ”‚ e-commerce websites and mobile applications, was initially established in Palo Alto, California. John and       โ”‚\n",
+       "โ”‚ Patrick, who were 19 and 21 years old at the time, respectively, began working on Stripe in early 2010. The     โ”‚\n",
+       "โ”‚ company publicly launched in September 2011 after a lengthy private beta period.\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\n### 3.        โ”‚\n",
+       "โ”‚ Additional context (if relevant):\\\\\\\\\\\\\\\\n- The Collison brothers secured a $2 million investment from notable  โ”‚\n",
+       "โ”‚ investors, including Peter Thiel, Elon Musk, Sequoia Capital, and others, in May 2011.\\\\\\\\\\\\\\\\n- Stripe has     โ”‚\n",
+       "โ”‚ since grown significantly, processing over $1 trillion in payments through its software, contributing to its    โ”‚\n",
+       "โ”‚ rapid rise in popularity. The company has become a leading player in the financial technology sector, with a    โ”‚\n",
+       "โ”‚ valuation that has surpassed $95 billion.'}                                                                     โ”‚\n",
+       "โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ\n",
+       "
\n" + ], + "text/plain": [ + "โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ\n", + "โ”‚ Calling tool: 'final_answer' with arguments: {'answer': '### 1. Task outcome (short version):\\\\\\\\\\\\\\\\nStripe โ”‚\n", + "โ”‚ was founded in 2010.\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\n### 2. Task outcome (extremely detailed version):\\\\\\\\\\\\\\\\nStripe, Inc. โ”‚\n", + "โ”‚ was founded in 2010 by Irish brothers John and Patrick Collison. The company, which offers payment software for โ”‚\n", + "โ”‚ e-commerce websites and mobile applications, was initially established in Palo Alto, California. John and โ”‚\n", + "โ”‚ Patrick, who were 19 and 21 years old at the time, respectively, began working on Stripe in early 2010. The โ”‚\n", + "โ”‚ company publicly launched in September 2011 after a lengthy private beta period.\\\\\\\\\\\\\\\\n\\\\\\\\\\\\\\\\n### 3. โ”‚\n", + "โ”‚ Additional context (if relevant):\\\\\\\\\\\\\\\\n- The Collison brothers secured a $2 million investment from notable โ”‚\n", + "โ”‚ investors, including Peter Thiel, Elon Musk, Sequoia Capital, and others, in May 2011.\\\\\\\\\\\\\\\\n- Stripe has โ”‚\n", + "โ”‚ since grown significantly, processing over $1 trillion in payments through its software, contributing to its โ”‚\n", + "โ”‚ rapid rise in popularity. The company has become a leading player in the financial technology sector, with a โ”‚\n", + "โ”‚ valuation that has surpassed $95 billion.'} โ”‚\n", + "โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Final answer: ### 1. Task outcome (short version):\\\\\\\\nStripe was founded in 2010.\\\\\\\\n\\\\\\\\n### 2. Task outcome \n",
+       "(extremely detailed version):\\\\\\\\nStripe, Inc. was founded in 2010 by Irish brothers John and Patrick Collison. The\n",
+       "company, which offers payment software for e-commerce websites and mobile applications, was initially established \n",
+       "in Palo Alto, California. John and Patrick, who were 19 and 21 years old at the time, respectively, began working \n",
+       "on Stripe in early 2010. The company publicly launched in September 2011 after a lengthy private beta \n",
+       "period.\\\\\\\\n\\\\\\\\n### 3. Additional context (if relevant):\\\\\\\\n- The Collison brothers secured a $2 million \n",
+       "investment from notable investors, including Peter Thiel, Elon Musk, Sequoia Capital, and others, in May \n",
+       "2011.\\\\\\\\n- Stripe has since grown significantly, processing over $1 trillion in payments through its software, \n",
+       "contributing to its rapid rise in popularity. The company has become a leading player in the financial technology \n",
+       "sector, with a valuation that has surpassed $95 billion.\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[1;38;2;212;183;2mFinal answer: ### 1. Task outcome (short version):\\\\\\\\nStripe was founded in 2010.\\\\\\\\n\\\\\\\\n### 2. Task outcome \u001b[0m\n", + "\u001b[1;38;2;212;183;2m(extremely detailed version):\\\\\\\\nStripe, Inc. was founded in 2010 by Irish brothers John and Patrick Collison. The\u001b[0m\n", + "\u001b[1;38;2;212;183;2mcompany, which offers payment software for e-commerce websites and mobile applications, was initially established \u001b[0m\n", + "\u001b[1;38;2;212;183;2min Palo Alto, California. John and Patrick, who were 19 and 21 years old at the time, respectively, began working \u001b[0m\n", + "\u001b[1;38;2;212;183;2mon Stripe in early 2010. The company publicly launched in September 2011 after a lengthy private beta \u001b[0m\n", + "\u001b[1;38;2;212;183;2mperiod.\\\\\\\\n\\\\\\\\n### 3. Additional context (if relevant):\\\\\\\\n- The Collison brothers secured a $2 million \u001b[0m\n", + "\u001b[1;38;2;212;183;2minvestment from notable investors, including Peter Thiel, Elon Musk, Sequoia Capital, and others, in May \u001b[0m\n", + "\u001b[1;38;2;212;183;2m2011.\\\\\\\\n- Stripe has since grown significantly, processing over $1 trillion in payments through its software, \u001b[0m\n", + "\u001b[1;38;2;212;183;2mcontributing to its rapid rise in popularity. The company has become a leading player in the financial technology \u001b[0m\n", + "\u001b[1;38;2;212;183;2msector, with a valuation that has surpassed $95 billion.\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
[Step 1: Duration 34.02 seconds| Input tokens: 4,290 | Output tokens: 288]\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[2m[Step 1: Duration 34.02 seconds| Input tokens: 4,290 | Output tokens: 288]\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Execution logs:\n",
+       "### 1. Task outcome (short version):\\\\\\\\nStripe was founded in 2010.\\\\\\\\n\\\\\\\\n### 2. Task outcome (extremely \n",
+       "detailed version):\\\\\\\\nStripe, Inc. was founded in 2010 by Irish brothers John and Patrick Collison. The company, \n",
+       "which offers payment software for e-commerce websites and mobile applications, was initially established in Palo \n",
+       "Alto, California. John and Patrick, who were 19 and 21 years old at the time, respectively, began working on Stripe\n",
+       "in early 2010. The company publicly launched in September 2011 after a lengthy private beta period.\\\\\\\\n\\\\\\\\n### 3.\n",
+       "Additional context (if relevant):\\\\\\\\n- The Collison brothers secured a $2 million investment from notable \n",
+       "investors, including Peter Thiel, Elon Musk, Sequoia Capital, and others, in May 2011.\\\\\\\\n- Stripe has since grown\n",
+       "significantly, processing over $1 trillion in payments through its software, contributing to its rapid rise in \n",
+       "popularity. The company has become a leading player in the financial technology sector, with a valuation that has \n",
+       "surpassed $95 billion.\n",
+       "\n",
+       "Out: None\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[1mExecution logs:\u001b[0m\n", + "### 1. Task outcome (short version):\\\\\\\\nStripe was founded in 2010.\\\\\\\\n\\\\\\\\n### 2. Task outcome (extremely \n", + "detailed version):\\\\\\\\nStripe, Inc. was founded in 2010 by Irish brothers John and Patrick Collison. The company, \n", + "which offers payment software for e-commerce websites and mobile applications, was initially established in Palo \n", + "Alto, California. John and Patrick, who were 19 and 21 years old at the time, respectively, began working on Stripe\n", + "in early 2010. The company publicly launched in September 2011 after a lengthy private beta period.\\\\\\\\n\\\\\\\\n### 3.\n", + "Additional context (if relevant):\\\\\\\\n- The Collison brothers secured a $2 million investment from notable \n", + "investors, including Peter Thiel, Elon Musk, Sequoia Capital, and others, in May 2011.\\\\\\\\n- Stripe has since grown\n", + "significantly, processing over $1 trillion in payments through its software, contributing to its rapid rise in \n", + "popularity. The company has become a leading player in the financial technology sector, with a valuation that has \n", + "surpassed $95 billion.\n", + "\n", + "Out: None\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
[Step 0: Duration 45.47 seconds| Input tokens: 2,691 | Output tokens: 268]\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[2m[Step 0: Duration 45.47 seconds| Input tokens: 2,691 | Output tokens: 268]\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” Step 1 โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[38;2;212;183;2mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” \u001b[0m\u001b[1mStep \u001b[0m\u001b[1;36m1\u001b[0m\u001b[38;2;212;183;2m โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
โ•ญโ”€ Executing this code: โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ\n",
+       "โ”‚   1 import datetime                                                                                             โ”‚\n",
+       "โ”‚   2                                                                                                             โ”‚\n",
+       "โ”‚   3 founding_year = 2010                                                                                        โ”‚\n",
+       "โ”‚   4 current_year = datetime.datetime.now().year                                                                 โ”‚\n",
+       "โ”‚   5 years_since_founded = current_year - founding_year                                                          โ”‚\n",
+       "โ”‚   6 print(years_since_founded)                                                                                  โ”‚\n",
+       "โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ\n",
+       "
\n" + ], + "text/plain": [ + "โ•ญโ”€ \u001b[1mExecuting this code:\u001b[0m โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ\n", + "โ”‚ \u001b[1;38;2;227;227;221;48;2;39;40;34m \u001b[0m\u001b[38;2;101;102;96;48;2;39;40;34m1 \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34mimport\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mdatetime\u001b[0m\u001b[48;2;39;40;34m \u001b[0m โ”‚\n", + "โ”‚ \u001b[1;38;2;227;227;221;48;2;39;40;34m \u001b[0m\u001b[38;2;101;102;96;48;2;39;40;34m2 \u001b[0m\u001b[48;2;39;40;34m \u001b[0m โ”‚\n", + "โ”‚ \u001b[1;38;2;227;227;221;48;2;39;40;34m \u001b[0m\u001b[38;2;101;102;96;48;2;39;40;34m3 \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mfounding_year\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;174;129;255;48;2;39;40;34m2010\u001b[0m\u001b[48;2;39;40;34m \u001b[0m โ”‚\n", + "โ”‚ \u001b[1;38;2;227;227;221;48;2;39;40;34m \u001b[0m\u001b[38;2;101;102;96;48;2;39;40;34m4 \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mcurrent_year\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mdatetime\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m.\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mdatetime\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m.\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mnow\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m.\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34myear\u001b[0m\u001b[48;2;39;40;34m \u001b[0m โ”‚\n", + "โ”‚ \u001b[1;38;2;227;227;221;48;2;39;40;34m \u001b[0m\u001b[38;2;101;102;96;48;2;39;40;34m5 \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34myears_since_founded\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m=\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mcurrent_year\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;255;70;137;48;2;39;40;34m-\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mfounding_year\u001b[0m\u001b[48;2;39;40;34m \u001b[0m โ”‚\n", + "โ”‚ \u001b[1;38;2;227;227;221;48;2;39;40;34m \u001b[0m\u001b[38;2;101;102;96;48;2;39;40;34m6 \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mprint\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34myears_since_founded\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m โ”‚\n", + "โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Execution logs:\n",
+       "15\n",
+       "\n",
+       "Out: None\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[1mExecution logs:\u001b[0m\n", + "15\n", + "\n", + "Out: None\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
[Step 1: Duration 7.91 seconds| Input tokens: 5,155 | Output tokens: 350]\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[2m[Step 1: Duration 7.91 seconds| Input tokens: 5,155 | Output tokens: 350]\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” Step 2 โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[38;2;212;183;2mโ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ” \u001b[0m\u001b[1mStep \u001b[0m\u001b[1;36m2\u001b[0m\u001b[38;2;212;183;2m โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
โ•ญโ”€ Executing this code: โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ\n",
+       "โ”‚   1 final_answer(years_since_founded)                                                                           โ”‚\n",
+       "โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ\n",
+       "
\n" + ], + "text/plain": [ + "โ•ญโ”€ \u001b[1mExecuting this code:\u001b[0m โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ\n", + "โ”‚ \u001b[1;38;2;227;227;221;48;2;39;40;34m \u001b[0m\u001b[38;2;101;102;96;48;2;39;40;34m1 \u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34mfinal_answer\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m(\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34myears_since_founded\u001b[0m\u001b[38;2;248;248;242;48;2;39;40;34m)\u001b[0m\u001b[48;2;39;40;34m \u001b[0m โ”‚\n", + "โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
Out - Final answer: 15\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[1;38;2;212;183;2mOut - Final answer: 15\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
[Step 2: Duration 5.18 seconds| Input tokens: 7,808 | Output tokens: 406]\n",
+       "
\n" + ], + "text/plain": [ + "\u001b[2m[Step 2: Duration 5.18 seconds| Input tokens: 7,808 | Output tokens: 406]\u001b[0m\n" + ] + }, + "metadata": {}, + "output_type": "display_data" }, { "data": { "text/plain": [ - "14" + "15" ] }, - "execution_count": 26, + "execution_count": 17, "metadata": {}, "output_type": "execute_result" } @@ -376,9 +851,9 @@ ], "metadata": { "kernelspec": { - "display_name": "cookbook2", + "display_name": "test2", "language": "python", - "name": "cookbook2" + "name": "test2" }, "language_info": { "codemirror_mode": { diff --git a/notebooks/zh-CN/_toctree.yml b/notebooks/zh-CN/_toctree.yml index 3a41245b..bceb4609 100644 --- a/notebooks/zh-CN/_toctree.yml +++ b/notebooks/zh-CN/_toctree.yml @@ -70,7 +70,7 @@ isExpanded: false sections: - local: agents - title: ไฝฟ็”จ Transformers Agents ๆž„ๅปบๅ…ทๆœ‰ๅทฅๅ…ท่ฐƒ็”จ่ถ…่ƒฝๅŠ›็š„ๆ™บ่ƒฝไฝ“ + title: ไฝฟ็”จ smolagents ๆž„ๅปบๅ…ทๆœ‰ๅทฅๅ…ท่ฐƒ็”จ่ถ…่ƒฝๅŠ›็š„ๆ™บ่ƒฝไฝ“ - local: agent_rag title: ๆ™บ่ƒฝไฝ“ RAG ้€š่ฟ‡ๆŸฅ่ฏข้‡ๆž„ๅ’Œ่‡ชๆŸฅ่ฏขๆฅๅขžๅผบไฝ ็š„ RAG