alexkueck commited on
Commit
bbcbcd8
1 Parent(s): 98eda28

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -230,12 +230,11 @@ def create_assistant_file(prompt, file):
230
  ##################################################
231
  #openassistant um im Netz zu suchen
232
  def create_assistant_suche(prompt):
233
- global client
234
- #neues File dem Assistant hinzufügen
235
- assistant_suche =openai_assistant_suche(client)
236
- thread_suche, run = create_thread_and_run(prompt, client, assistant_suche.id)
237
  run = wait_on_run(run, thread_suche, client)
238
- response = get_response(thread_suche, client, assistant_suche.id)
239
  result = response.data[1].content[0].text.value
240
  #Alternativ duckduckgo_search????????????????????????????????????????
241
  return result
 
230
  ##################################################
231
  #openassistant um im Netz zu suchen
232
  def create_assistant_suche(prompt):
233
+ global client, general_assistant_suche
234
+ #neues Thread mit akt. prompt dem Assistant hinzufügen
235
+ thread_suche, run = create_thread_and_run(prompt, client, general_assistant_suche.id)
 
236
  run = wait_on_run(run, thread_suche, client)
237
+ response = get_response(thread_suche, client, general_assistant_suche.id)
238
  result = response.data[1].content[0].text.value
239
  #Alternativ duckduckgo_search????????????????????????????????????????
240
  return result