Update app.py
Browse files
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 |
-
|
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 |
|