Spaces:
Sleeping
Sleeping
Update ChatEngine.py
Browse files- ChatEngine.py +1 -1
ChatEngine.py
CHANGED
@@ -38,7 +38,7 @@ class ChatEngine:
|
|
38 |
logging.info("Created Chat History")
|
39 |
|
40 |
logging.info("Asking LLM")
|
41 |
-
response = llm.
|
42 |
|
43 |
logging.info("Got Response from LLM, Returning")
|
44 |
return response
|
|
|
38 |
logging.info("Created Chat History")
|
39 |
|
40 |
logging.info("Asking LLM")
|
41 |
+
response = llm.invoke(chat_history, self.params)
|
42 |
|
43 |
logging.info("Got Response from LLM, Returning")
|
44 |
return response
|