Update app.py
Browse files
app.py
CHANGED
@@ -163,6 +163,6 @@ demo = gr.Interface(fn=process,
|
|
163 |
gr.Textbox(label = "Dataset Name", value = DATASET_NAME, lines = 1),
|
164 |
gr.Textbox(label = "System Prompt", value = SYSTEM_PROMPT, lines = 2),
|
165 |
gr.Textbox(label = "User Prompt", value = USER_PROMPT, lines = 2),
|
166 |
-
gr.Textbox(label = "SQL Context", value = SQL_CONTEXT, lines =
|
167 |
outputs=[gr.Textbox(label = "Prompt Completion", value = os.environ["OUTPUT"])])
|
168 |
demo.launch()
|
|
|
163 |
gr.Textbox(label = "Dataset Name", value = DATASET_NAME, lines = 1),
|
164 |
gr.Textbox(label = "System Prompt", value = SYSTEM_PROMPT, lines = 2),
|
165 |
gr.Textbox(label = "User Prompt", value = USER_PROMPT, lines = 2),
|
166 |
+
gr.Textbox(label = "SQL Context", value = SQL_CONTEXT, lines = 4)],
|
167 |
outputs=[gr.Textbox(label = "Prompt Completion", value = os.environ["OUTPUT"])])
|
168 |
demo.launch()
|