Omnibus commited on
Commit
9987da1
·
verified ·
1 Parent(s): 74bcaa6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -5
app.py CHANGED
@@ -281,7 +281,7 @@ def compress_data_og(c, instruct, history):
281
 
282
 
283
 
284
- def summarize(inp,history,report_check,sum_mem_check,data=None,files=None,url=None,pdf_url=None,pdf_batch=None):
285
  json_box=[]
286
  if inp == "":
287
  inp = "Process this data"
@@ -341,10 +341,10 @@ def summarize(inp,history,report_check,sum_mem_check,data=None,files=None,url=No
341
  if i == " " or i=="," or i=="\n":
342
  c +=1
343
  print (f'c:: {c}')
344
- if sum_mem_check=="Memory":
345
  json_out = save_memory(inp,out)
346
  rawp = "Complete"
347
- if sum_mem_check=="Summarize":
348
  json_out = compress_data(c,inp,out)
349
 
350
  out = str(json_out)
@@ -585,7 +585,9 @@ with gr.Blocks() as app:
585
  prompt=gr.Textbox(label = "Instructions (optional)")
586
  with gr.Column(scale=1):
587
  report_check=gr.Checkbox(label="Return Report", value=True)
588
- sum_mem_check=gr.Radio(label="Output",choices=["Summary","Memory"])
 
 
589
  button=gr.Button()
590
 
591
  #models_dd=gr.Dropdown(choices=[m for m in return_list],interactive=True)
@@ -608,6 +610,6 @@ with gr.Blocks() as app:
608
  #text=gr.JSON()
609
  #inp_query.change(search_models,inp_query,models_dd)
610
  clear_btn.click(clear_fn,None,[prompt,chatbot])
611
- go=button.click(summarize,[prompt,chatbot,report_check,sum_mem_check,data,file,url,pdf_url,pdf_batch],[prompt,chatbot,e_box,json_out])
612
  stop_button.click(None,None,None,cancels=[go])
613
  app.queue(default_concurrency_limit=20).launch(show_api=False)
 
281
 
282
 
283
 
284
+ def summarize(inp,history,report_check,sum_check,mem_check,data=None,files=None,url=None,pdf_url=None,pdf_batch=None):
285
  json_box=[]
286
  if inp == "":
287
  inp = "Process this data"
 
341
  if i == " " or i=="," or i=="\n":
342
  c +=1
343
  print (f'c:: {c}')
344
+ if mem_check:
345
  json_out = save_memory(inp,out)
346
  rawp = "Complete"
347
+ if sum_check:
348
  json_out = compress_data(c,inp,out)
349
 
350
  out = str(json_out)
 
585
  prompt=gr.Textbox(label = "Instructions (optional)")
586
  with gr.Column(scale=1):
587
  report_check=gr.Checkbox(label="Return Report", value=True)
588
+ sum_check=gr.Checkbox(label="Summarize", value=True)
589
+ mem_check=gr.Checkbox(label="Memory", value=True)
590
+ #sum_mem_check=gr.Radio(label="Output",choices=["Summary","Memory"])
591
  button=gr.Button()
592
 
593
  #models_dd=gr.Dropdown(choices=[m for m in return_list],interactive=True)
 
610
  #text=gr.JSON()
611
  #inp_query.change(search_models,inp_query,models_dd)
612
  clear_btn.click(clear_fn,None,[prompt,chatbot])
613
+ go=button.click(summarize,[prompt,chatbot,report_check,sum_check,mem_check,data,file,url,pdf_url,pdf_batch],[prompt,chatbot,e_box,json_out]).then()
614
  stop_button.click(None,None,None,cancels=[go])
615
  app.queue(default_concurrency_limit=20).launch(show_api=False)