ianshank commited on
Commit
c213398
·
verified ·
1 Parent(s): 708a5b2

Deploy MangoMAS Space via script

Browse files
Files changed (3) hide show
  1. README.md +1 -1
  2. __pycache__/app.cpython-311.pyc +0 -0
  3. app.py +1 -3
README.md CHANGED
@@ -3,7 +3,7 @@ title: MangoMAS — Multi-Agent Cognitive Architecture
3
  colorFrom: yellow
4
  colorTo: red
5
  sdk: gradio
6
- sdk_version: "5.12.0"
7
  app_file: app.py
8
  pinned: true
9
  license: mit
 
3
  colorFrom: yellow
4
  colorTo: red
5
  sdk: gradio
6
+ sdk_version: "6.5.1"
7
  app_file: app.py
8
  pinned: true
9
  license: mit
__pycache__/app.cpython-311.pyc CHANGED
Binary files a/__pycache__/app.cpython-311.pyc and b/__pycache__/app.cpython-311.pyc differ
 
app.py CHANGED
@@ -852,7 +852,7 @@ footer { display: none !important; }
852
 
853
  def build_app() -> gr.Blocks:
854
  """Build the complete Gradio application."""
855
- with gr.Blocks(title="MangoMAS — Multi-Agent Cognitive Architecture") as app:
856
 
857
  # Header
858
  gr.HTML("""
@@ -1170,6 +1170,4 @@ if __name__ == "__main__":
1170
  server_name="0.0.0.0",
1171
  server_port=7860,
1172
  share=False,
1173
- theme=THEME,
1174
- css=CSS,
1175
  )
 
852
 
853
  def build_app() -> gr.Blocks:
854
  """Build the complete Gradio application."""
855
+ with gr.Blocks(theme=THEME, css=CSS, title="MangoMAS — Multi-Agent Cognitive Architecture") as app:
856
 
857
  # Header
858
  gr.HTML("""
 
1170
  server_name="0.0.0.0",
1171
  server_port=7860,
1172
  share=False,
 
 
1173
  )