Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -27,8 +27,8 @@ process_url_clicked = st.sidebar.button("Process URLs")
|
|
27 |
file_path = "faiss_store_openai.pkl"
|
28 |
|
29 |
main_placeholder = st.empty()
|
30 |
-
llm = OpenAI(model_name="gpt-4o", temperature=0.9, max_tokens=500)
|
31 |
-
|
32 |
|
33 |
def fetch_web_content(url):
|
34 |
"""Fetches text content from a given URL using BeautifulSoup."""
|
|
|
27 |
file_path = "faiss_store_openai.pkl"
|
28 |
|
29 |
main_placeholder = st.empty()
|
30 |
+
#llm = OpenAI(model_name="gpt-4o", temperature=0.9, max_tokens=500)
|
31 |
+
llm = ChatGroq(model_name="llama-3.3-70b-versatile", temperature=0.9, max_tokens=500)
|
32 |
|
33 |
def fetch_web_content(url):
|
34 |
"""Fetches text content from a given URL using BeautifulSoup."""
|