Spaces:
Runtime error
Runtime error
Update utils.py
Browse files
utils.py
CHANGED
@@ -282,7 +282,7 @@ def document_retrieval_mongodb(llm, prompt):
|
|
282 |
###############################################
|
283 |
#langchain nutzen, um prompt an LLM zu leiten - llm und prompt sind austauschbar
|
284 |
def llm_chain(llm, prompt, hugchat):
|
285 |
-
if (
|
286 |
llm_chain = LLMChain(llm = llm, prompt = LLM_CHAIN_PROMPT)
|
287 |
result = llm_chain.run({"question": prompt})
|
288 |
else:
|
|
|
282 |
###############################################
|
283 |
#langchain nutzen, um prompt an LLM zu leiten - llm und prompt sind austauschbar
|
284 |
def llm_chain(llm, prompt, hugchat):
|
285 |
+
if (not hugchat):
|
286 |
llm_chain = LLMChain(llm = llm, prompt = LLM_CHAIN_PROMPT)
|
287 |
result = llm_chain.run({"question": prompt})
|
288 |
else:
|