acecalisto3 commited on
Commit
8aaff74
·
verified ·
1 Parent(s): 14d749b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -9
app.py CHANGED
@@ -985,17 +985,15 @@ def create_interface() -> gr.Blocks():
985
  """
986
  with gr.Blocks() as demo:
987
  gr.Markdown("# All-in-One Scraper, Database, and RSS Feeder")
988
-
989
  with gr.Row():
990
  with gr.Column():
991
- # Scraping Controls
992
- storage_location = gr.Textbox(
993
- value=DEFAULT_FILE_PATH, label="Storage Location"
994
- )
995
- urls = gr.Textbox(
996
- label="URLs (comma separated)",
997
- placeholder="https://example.com, https://anotherexample.com",
998
- )
999
  scrape_interval = gr.Slider(
1000
  minimum=1,
1001
  maximum=60,
 
985
  """
986
  with gr.Blocks() as demo:
987
  gr.Markdown("# All-in-One Scraper, Database, and RSS Feeder")
 
988
  with gr.Row():
989
  with gr.Column():
990
+ # ... (Scraping Controls) ...
991
+ with gr.Column():
992
+ # Chat Interface
993
+ chat_history = gr.Chatbot(label="Chat History", type='messages') # Updated line
994
+ with gr.Row():
995
+ message = gr.Textbox(label="Message", placeholder="Type your message here...")
996
+
 
997
  scrape_interval = gr.Slider(
998
  minimum=1,
999
  maximum=60,