JawadBenali commited on
Commit
36dfa43
·
1 Parent(s): fad8019

Initial deployment - ArchitectAI MCP

Browse files
Files changed (1) hide show
  1. app.py +8 -7
app.py CHANGED
@@ -407,12 +407,6 @@ custom_css = """
407
  # --- GRADIO INTERFACE ---
408
  with gr.Blocks(
409
  title="ArchitectAI - Autonomous Cloud Refactoring",
410
- theme=gr.themes.Soft(
411
- primary_hue="purple",
412
- secondary_hue="blue",
413
- neutral_hue="slate",
414
- ),
415
- css=custom_css,
416
  fill_height=True
417
  ) as demo:
418
 
@@ -555,5 +549,12 @@ if __name__ == "__main__":
555
  demo.launch(
556
  server_name="0.0.0.0",
557
  server_port=7860,
558
- share=False
 
 
 
 
 
 
 
559
  )
 
407
  # --- GRADIO INTERFACE ---
408
  with gr.Blocks(
409
  title="ArchitectAI - Autonomous Cloud Refactoring",
 
 
 
 
 
 
410
  fill_height=True
411
  ) as demo:
412
 
 
549
  demo.launch(
550
  server_name="0.0.0.0",
551
  server_port=7860,
552
+ share=False,
553
+ theme=gr.themes.Soft(
554
+ primary_hue="purple",
555
+ secondary_hue="blue",
556
+ neutral_hue="slate",
557
+ ),
558
+ css=custom_css,
559
+
560
  )