Spaces:
Runtime error
Runtime error
Update utils.py
Browse files
utils.py
CHANGED
@@ -381,7 +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 = "")
|
385 |
result = llm_chain.run({"question": input})
|
386 |
return result
|
387 |
|
|
|
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 |
|