alexkueck commited on
Commit
c237d0f
1 Parent(s): 49ffd3a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -432,7 +432,7 @@ def generate_text (prompt, file, history, rag_option, model_option, openai_api_k
432
 
433
  #Prompt an history anhängen und einen Text daraus machen
434
  if (file == None):
435
- history_text_und_prompt = generate_prompt_with_history(prompt, history)
436
  else:
437
  history_file_und_prompt = generate_prompt_with_history(prompt, file, history)
438
 
 
432
 
433
  #Prompt an history anhängen und einen Text daraus machen
434
  if (file == None):
435
+ history_text_und_prompt = generate_prompt_with_history_openai(prompt, history)
436
  else:
437
  history_file_und_prompt = generate_prompt_with_history(prompt, file, history)
438