alexkueck commited on
Commit
a135fbf
·
1 Parent(s): e6a7435

Update utils.py

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