Daemontatox commited on
Commit
ba78767
·
verified ·
1 Parent(s): 78b486e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -110,10 +110,10 @@ retriever = db.as_retriever(
110
  # Set up the LLM
111
  llm = ChatOpenAI(
112
  base_url="https://api-inference.huggingface.co/v1/",
113
- temperature=0,
114
  api_key=HF_TOKEN,
115
  model="Qwen/Qwen2.5-Coder-32B-Instruct",
116
- stream=True
117
 
118
  )
119
 
 
110
  # Set up the LLM
111
  llm = ChatOpenAI(
112
  base_url="https://api-inference.huggingface.co/v1/",
113
+ temperature=0.1,
114
  api_key=HF_TOKEN,
115
  model="Qwen/Qwen2.5-Coder-32B-Instruct",
116
+ max_new_tokens=4096
117
 
118
  )
119