Deaksh commited on
Commit
8e8caad
·
verified ·
1 Parent(s): 35a49c3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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
- #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."""
 
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."""