alexkueck commited on
Commit
3781906
1 Parent(s): 5438611

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -572,7 +572,10 @@ def generate_code_antwort (prompt, chatbot, history, model_option, openai_api_k
572
  print("LLM aufrufen ohne RAG: ...........")
573
  resulti = llm_chain(llm, history_text_und_prompt)
574
  result = resulti.strip()
575
-
 
 
 
576
 
577
  ################################################
578
  #GUI
 
572
  print("LLM aufrufen ohne RAG: ...........")
573
  resulti = llm_chain(llm, history_text_und_prompt)
574
  result = resulti.strip()
575
+ except Exception as e:
576
+ raise gr.Error(e)
577
+
578
+ return result, suche_im_Netz
579
 
580
  ################################################
581
  #GUI