Update app.py
Browse files
app.py
CHANGED
@@ -148,7 +148,7 @@ demo = gr.Interface(fn=process,
|
|
148 |
gr.Textbox(label = "System Prompt", value = SYSTEM_PROMPT, lines = 2),
|
149 |
gr.Textbox(label = "User Prompt", value = USER_PROMPT, lines = 2),
|
150 |
gr.Textbox(label = "SQL Context", value = SQL_CONTEXT, lines = 4)],
|
151 |
-
outputs=[gr.Textbox(label = "Prompt Completion", value = os.environ["OUTPUT"])]
|
152 |
title = "Supervised Fine-Tuning",
|
153 |
description = os.environ["DESCRIPTION"]
|
154 |
demo.launch()
|
|
|
148 |
gr.Textbox(label = "System Prompt", value = SYSTEM_PROMPT, lines = 2),
|
149 |
gr.Textbox(label = "User Prompt", value = USER_PROMPT, lines = 2),
|
150 |
gr.Textbox(label = "SQL Context", value = SQL_CONTEXT, lines = 4)],
|
151 |
+
outputs=[gr.Textbox(label = "Prompt Completion", value = os.environ["OUTPUT"])],
|
152 |
title = "Supervised Fine-Tuning",
|
153 |
description = os.environ["DESCRIPTION"]
|
154 |
demo.launch()
|