tykiww commited on
Commit
898597c
·
verified ·
1 Parent(s): 17dfda2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -67,9 +67,6 @@ def main():
67
 
68
 
69
  ##### Model Outputs #####
70
-
71
- # Text output
72
- output = gr.Textbox(label="Output")
73
 
74
  ##### Execution #####
75
 
@@ -79,6 +76,9 @@ def main():
79
  tune_btn.click(fn=greet,
80
  inputs=[model_name, inject_prompt, dataset_predefined],
81
  outputs=output)
 
 
 
82
  # Launch baby
83
  demo.launch()
84
 
 
67
 
68
 
69
  ##### Model Outputs #####
 
 
 
70
 
71
  ##### Execution #####
72
 
 
76
  tune_btn.click(fn=greet,
77
  inputs=[model_name, inject_prompt, dataset_predefined],
78
  outputs=output)
79
+ # Text output (for now)
80
+ output = gr.Textbox(label="Output")
81
+
82
  # Launch baby
83
  demo.launch()
84