zealous79A commited on
Commit
3458f7f
·
verified ·
1 Parent(s): 16d482d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -7
app.py CHANGED
@@ -65,12 +65,6 @@ demo = gr.ChatInterface(
65
  )
66
  """
67
 
68
- def show_components():
69
- return [
70
- gr.Textbox(visible=True, label="Query"),
71
- gr.Button(visible=True, value="Search"),
72
- ]
73
-
74
  def load_new_dataset():
75
  gr.Info(message="Loading dataset...")
76
  ds = load_dataset("fka/awesome-chatgpt-prompts", split="train")
@@ -78,7 +72,16 @@ def load_new_dataset():
78
  #----------------------
79
 
80
  with gr.Blocks() as demo:
81
- show_components()
 
 
 
 
 
 
 
 
 
82
 
83
  #----------------------
84
 
 
65
  )
66
  """
67
 
 
 
 
 
 
 
68
  def load_new_dataset():
69
  gr.Info(message="Loading dataset...")
70
  ds = load_dataset("fka/awesome-chatgpt-prompts", split="train")
 
72
  #----------------------
73
 
74
  with gr.Blocks() as demo:
75
+ text_input = gr.Textbox(visible=True, label="Query")
76
+ btn_run = gr.Button(visible=True, value="Search")
77
+ results_output = gr.Dataframe(label="Results", visible=False, wrap=True)
78
+
79
+ btn_run.click(
80
+ #fn=run_query,
81
+ #inputs=[text_input, query_input, split_dropdown, column_dropdown],
82
+ #outputs=results_output,
83
+ print("button pressed!")
84
+ )
85
 
86
  #----------------------
87