Update app.py
Browse files
app.py
CHANGED
@@ -99,7 +99,7 @@ def process(model_id, dataset):
|
|
99 |
return "Done"
|
100 |
|
101 |
demo = gr.Interface(fn=process,
|
102 |
-
inputs=[gr.Textbox(label = "Model ID", value = "
|
103 |
-
gr.Textbox(label = "Dataset", value = "
|
104 |
outputs=[gr.Textbox(label = "Completion")])
|
105 |
demo.launch()
|
|
|
99 |
return "Done"
|
100 |
|
101 |
demo = gr.Interface(fn=process,
|
102 |
+
inputs=[gr.Textbox(label = "Model ID", value = "codellama/CodeLlama-7b-hf", lines = 1),
|
103 |
+
gr.Textbox(label = "Dataset", value = "open-assistance/prompting", lines = 1)],
|
104 |
outputs=[gr.Textbox(label = "Completion")])
|
105 |
demo.launch()
|