Navyabhat commited on
Commit
e2be56e
·
verified ·
1 Parent(s): 410daf7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -105,7 +105,10 @@ def run(history, text, image, audio_upload, audio_mic):
105
  history.append((None, outputs.title()))
106
  return history, None, None, None, None
107
 
108
-
 
 
 
109
  with gr.Blocks(theme=seafoam) as demo:
110
  gr.Markdown("## MulitModal Phi2 Model Pretraining and Finetuning from Scratch")
111
 
 
105
  history.append((None, outputs.title()))
106
  return history, None, None, None, None
107
 
108
+ def upload_file(files):
109
+ file_paths = [file.name for file in files]
110
+ return file_paths
111
+
112
  with gr.Blocks(theme=seafoam) as demo:
113
  gr.Markdown("## MulitModal Phi2 Model Pretraining and Finetuning from Scratch")
114