alexkueck commited on
Commit
59a0491
·
verified ·
1 Parent(s): fd8edc6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -325,7 +325,7 @@ def create_assistant_suche_hf(chatbot, prompt):
325
  def generate_auswahl(prompt_in, file, file_history, chatbot, history, rag_option, model_option, openai_api_key, k=3, top_p=0.6, temperature=0.5, max_new_tokens=4048, max_context_length_tokens=2048, repetition_penalty=1.3,top_k=35, websuche="Aus", validate=False):
326
  global db
327
  #nur wenn man sich validiert hat, kann die Anwendung los legen
328
- if (validate and not prompt == "" and not prompt == None):
329
  #wenn RAG angeschaltet - Vektorstore initialisieren
330
  #aber nur, wenn es noch nicht geshehen ist (splittet = False)
331
  #falls schon ein File hochgeladen wurde, ist es in history_file gespeichert - falls ein neues File hochgeladen wurde, wird es anschließend neu gesetzt
 
325
  def generate_auswahl(prompt_in, file, file_history, chatbot, history, rag_option, model_option, openai_api_key, k=3, top_p=0.6, temperature=0.5, max_new_tokens=4048, max_context_length_tokens=2048, repetition_penalty=1.3,top_k=35, websuche="Aus", validate=False):
326
  global db
327
  #nur wenn man sich validiert hat, kann die Anwendung los legen
328
+ if (validate and not prompt_in == "" and not prompt_in == None):
329
  #wenn RAG angeschaltet - Vektorstore initialisieren
330
  #aber nur, wenn es noch nicht geshehen ist (splittet = False)
331
  #falls schon ein File hochgeladen wurde, ist es in history_file gespeichert - falls ein neues File hochgeladen wurde, wird es anschließend neu gesetzt