prajvalitha commited on
Commit
1d32a8b
Β·
verified Β·
1 Parent(s): 0f4ac15

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -561,7 +561,12 @@ theme = gr.themes.Soft(
561
 
562
  # ─── Gradio UI ────────────────────────────────────────────────────────────────
563
 
564
- with gr.Blocks(title="Codle AI") as demo:
 
 
 
 
 
565
 
566
  gr.HTML(_header_html())
567
 
@@ -785,7 +790,4 @@ if __name__ == "__main__":
785
  demo.launch(
786
  server_name="0.0.0.0",
787
  server_port=int(os.environ.get("PORT", 7860)),
788
- theme=theme,
789
- css=CSS,
790
- head=f"<script>{JS_SRC}</script>",
791
  )
 
561
 
562
  # ─── Gradio UI ────────────────────────────────────────────────────────────────
563
 
564
+ with gr.Blocks(
565
+ title="Codle AI",
566
+ theme=theme,
567
+ css=CSS,
568
+ head=f"<script>{JS_SRC}</script>",
569
+ ) as demo:
570
 
571
  gr.HTML(_header_html())
572
 
 
790
  demo.launch(
791
  server_name="0.0.0.0",
792
  server_port=int(os.environ.get("PORT", 7860)),
 
 
 
793
  )