Mjlehtim commited on
Commit
92a8c27
1 Parent(s): 7a886b3

LLM updated to llama-3.2-90b-text-preview

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -404,9 +404,9 @@ intercreditor_document = st.sidebar.toggle("Intercreditor document", False)
404
 
405
  #-------------
406
  llm=ChatGroq(groq_api_key=groq_api_key,
407
- model_name="Llama-3.1-70b-Versatile", temperature = 0.0, streaming=True)
408
 
409
- Llama = "Llama-3.1-70b-Versatile"
410
  def language_model(
411
  model_name: str = Llama, temperature: float = 0, verbose: bool = False
412
  ):
 
404
 
405
  #-------------
406
  llm=ChatGroq(groq_api_key=groq_api_key,
407
+ model_name="llama-3.2-90b-text-preview", temperature = 0.0, streaming=True)
408
 
409
+ Llama = "llama-3.2-90b-text-preview"
410
  def language_model(
411
  model_name: str = Llama, temperature: float = 0, verbose: bool = False
412
  ):