alexkueck commited on
Commit
59f8e34
·
verified ·
1 Parent(s): 9414107

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +1 -1
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 (!hugchat):
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: