alexkueck commited on
Commit
a08e4de
1 Parent(s): 9a3bcdf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -246,7 +246,6 @@ def create_assistant_suche(prompt):
246
  response = get_response(thread_suche, client, general_assistant_suche.id)
247
  result = response.data[1].content[0].text.value
248
  """
249
- #Alternativ duckduckgo_search????????????????????????????????????????
250
 
251
  return erg + src
252
 
@@ -427,7 +426,7 @@ def generate_text (prompt, chatbot, history, rag_option, model_option, openai_ap
427
  else:
428
  splittet = False
429
  print("LLM aufrufen ohne RAG: ...........")
430
- result = create_assistant_suche(prompt) #llm_chain(llm, history_text_und_prompt)
431
 
432
  #Wenn keine Antwort möglich "Ich weiß es nicht" etc., dann versuchen mit Suche im Internet.
433
  if is_response_similar(result):
 
246
  response = get_response(thread_suche, client, general_assistant_suche.id)
247
  result = response.data[1].content[0].text.value
248
  """
 
249
 
250
  return erg + src
251
 
 
426
  else:
427
  splittet = False
428
  print("LLM aufrufen ohne RAG: ...........")
429
+ result = llm_chain(llm, history_text_und_prompt)
430
 
431
  #Wenn keine Antwort möglich "Ich weiß es nicht" etc., dann versuchen mit Suche im Internet.
432
  if is_response_similar(result):