acecalisto3 commited on
Commit
f56f259
·
verified ·
1 Parent(s): b8bb6da

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -372,4 +372,8 @@ with iface:
372
  gr.Examples(examples, [msg, agent_dropdown, sys_prompt, temperature, max_new_tokens, top_p, repetition_penalty])
373
 
374
  if __name__ == "__main__":
375
- iface.launch(concurrency_limit=20)
 
 
 
 
 
372
  gr.Examples(examples, [msg, agent_dropdown, sys_prompt, temperature, max_new_tokens, top_p, repetition_penalty])
373
 
374
  if __name__ == "__main__":
375
+ iface.launch(
376
+ server_name="0.0.0.0",
377
+ server_port=7860,
378
+ share=True,
379
+ )