burtenshaw commited on
Commit
3ca5f49
Β·
1 Parent(s): 784acd7

move gradio to root

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -182,11 +182,11 @@ def create_gradio_app():
182
 
183
  # Mount Gradio app
184
  gradio_app = create_gradio_app()
185
- app = gr.mount_gradio_app(app, gradio_app, path="/gradio")
186
 
187
 
188
  if __name__ == "__main__":
189
  print("πŸš€ Starting HF Discussion Bot with Tiny Agents...")
190
- print("πŸ“Š Dashboard: http://localhost:7860/gradio")
191
  print("πŸ”— Webhook: http://localhost:7860/webhook")
192
  uvicorn.run("app:app", host="0.0.0.0", port=7860, reload=True)
 
182
 
183
  # Mount Gradio app
184
  gradio_app = create_gradio_app()
185
+ app = gr.mount_gradio_app(app, gradio_app, path="/")
186
 
187
 
188
  if __name__ == "__main__":
189
  print("πŸš€ Starting HF Discussion Bot with Tiny Agents...")
190
+ print("πŸ“Š Dashboard: http://localhost:7860")
191
  print("πŸ”— Webhook: http://localhost:7860/webhook")
192
  uvicorn.run("app:app", host="0.0.0.0", port=7860, reload=True)