From d077bb39a4f8eed3743495119c066eb5dbfae87c Mon Sep 17 00:00:00 2001 From: ShubhamSaboo Date: Fri, 11 Oct 2024 21:48:03 -0500 Subject: [PATCH] updated to llama3.2 --- web_scrapping_ai_agent/local_ai_scrapper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web_scrapping_ai_agent/local_ai_scrapper.py b/web_scrapping_ai_agent/local_ai_scrapper.py index 38ca154..802ab7e 100644 --- a/web_scrapping_ai_agent/local_ai_scrapper.py +++ b/web_scrapping_ai_agent/local_ai_scrapper.py @@ -4,12 +4,12 @@ from scrapegraphai.graphs import SmartScraperGraph # Set up the Streamlit app st.title("Web Scrapping AI Agent 🕵️‍♂️") -st.caption("This app allows you to scrape a website using OpenAI API") +st.caption("This app allows you to scrape a website using Llama 3.2") # Set up the configuration for the SmartScraperGraph graph_config = { "llm": { - "model": "ollama/llama3", + "model": "ollama/llama3.2", "temperature": 0, "format": "json", # Ollama needs the format to be specified explicitly "base_url": "http://localhost:11434", # set Ollama URL