alexkueck commited on
Commit
5f7db63
·
1 Parent(s): 3c99bb3

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +1 -2
utils.py CHANGED
@@ -381,8 +381,7 @@ def process_chatverlauf(prompt, model, oai_key):
381
 
382
  def process_chatverlauf_hf(history, llm):
383
  input = generate_prompt_with_history("Gib folgendem Text eine Überschrift mit maximal 3 Worten", history)
384
- llm_chain = LLMChain(llm = llm, prompt = "Gib folgendem Text eine Überschrift mit maximal 3 Worten")
385
- result = llm_chain.run({"question": input})
386
  return result
387
 
388
 
 
381
 
382
  def process_chatverlauf_hf(history, llm):
383
  input = generate_prompt_with_history("Gib folgendem Text eine Überschrift mit maximal 3 Worten", history)
384
+ result = llm_chain(llm, input)
 
385
  return result
386
 
387