WhatsMusic commited on
Commit
f5c5c4b
·
verified ·
1 Parent(s): 7b19954
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -76,9 +76,11 @@ with gr.Blocks(
76
  outputs=[input_prompt, output_code]
77
  )
78
 
 
 
79
  # Launch with sharing enabled
80
  if __name__ == "__main__":
81
  demo.launch(
82
- share=True,
83
- auth=lambda u,p: True # Remove this for production!
84
  )
 
76
  outputs=[input_prompt, output_code]
77
  )
78
 
79
+ pass
80
+
81
  # Launch with sharing enabled
82
  if __name__ == "__main__":
83
  demo.launch(
84
+ auth=None, # Disable authentication for local development
85
+ share=False # Disable sharing when running locally
86
  )