bezaime commited on
Commit
240af2f
·
verified ·
1 Parent(s): 1b3c2f6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -22,7 +22,7 @@ groq_key = os.environ.get('groq_API_Keys')
22
  ## LLM used for RAG
23
  from langchain_groq import ChatGroq
24
 
25
- llm = ChatGroq(model="deepseek-r1-distill-llama-70b",api_key=groq_key)
26
 
27
  ## Embedding model!
28
  from langchain_huggingface import HuggingFaceEmbeddings
 
22
  ## LLM used for RAG
23
  from langchain_groq import ChatGroq
24
 
25
+ llm = ChatGroq(model="llama-3.3-70b-versatile",api_key=groq_key)
26
 
27
  ## Embedding model!
28
  from langchain_huggingface import HuggingFaceEmbeddings