Joseph Pollack commited on
Commit
f3f24be
Β·
unverified Β·
1 Parent(s): 40bf4ef

adds fixes interface login - attempt

Browse files
Files changed (3) hide show
  1. .github/README.md +1 -1
  2. README.md +3 -3
  3. src/app.py +4 -4
.github/README.md CHANGED
@@ -3,7 +3,7 @@
3
  > **You are reading the Github README!**
4
  >
5
  > - πŸ“š **Documentation**: See our [technical documentation](https://deepcritical.github.io/GradioDemo/) for detailed information
6
- > - πŸ“– **Demo README**: Check out the [Demo README](..README.md) for setup, configuration, and contribution guidelines
7
  > - πŸ† **Hackathon Submission**: Keep reading below for more information about our MCP Hackathon submission
8
 
9
 
 
3
  > **You are reading the Github README!**
4
  >
5
  > - πŸ“š **Documentation**: See our [technical documentation](https://deepcritical.github.io/GradioDemo/) for detailed information
6
+ > - πŸ“– **Demo README**: Check out the [Demo README](..README.md) for for more information about our MCP Hackathon submission
7
  > - πŸ† **Hackathon Submission**: Keep reading below for more information about our MCP Hackathon submission
8
 
9
 
README.md CHANGED
@@ -32,9 +32,9 @@ tags:
32
 
33
  <div align="center">
34
 
35
- [![GitHub](https://img.shields.io/github/stars/DeepCritical/GradioDemo?style=for-the-badge&logo=github&logoColor=white&label=πŸ™%20GitHub&labelColor=181717&color=181717)](https://github.com/DeepCritical/GradioDemo)
36
- [![Documentation](https://img.shields.io/badge/πŸ“š%20Docs-0080FF?style=for-the-badge&logo=readthedocs&logoColor=white&labelColor=0080FF&color=0080FF)](deepcritical.github.io/GradioDemo/)
37
- [![Demo](https://img.shields.io/badge/πŸš€%20Demo-FFD21E?style=for-the-badge&logo=huggingface&logoColor=white&labelColor=FFD21E&color=FFD21E)](https://huggingface.co/spaces/DataQuests/DeepCritical)
38
  [![codecov](https://codecov.io/gh/DeepCritical/GradioDemo/graph/badge.svg?token=B1f05RCGpz)](https://codecov.io/gh/DeepCritical/GradioDemo)
39
  [![Join us on Discord](https://img.shields.io/discord/1109943800132010065?label=Discord&logo=discord&style=flat-square)](https://discord.gg/qdfnvSPcqP)
40
 
 
32
 
33
  <div align="center">
34
 
35
+ [![GitHub](https://img.shields.io/github/stars/DeepCritical/GradioDemo?style=for-the-badge&logo=github&logoColor=white&label=GitHub&labelColor=181717&color=181717)](https://github.com/DeepCritical/GradioDemo)
36
+ [![Documentation](https://img.shields.io/badge/Docs-0080FF?style=for-the-badge&logo=readthedocs&logoColor=white&labelColor=0080FF&color=0080FF)](deepcritical.github.io/GradioDemo/)
37
+ [![Demo](https://img.shields.io/badge/Demo-FFD21E?style=for-the-badge&logo=huggingface&logoColor=white&labelColor=FFD21E&color=FFD21E)](https://huggingface.co/spaces/DataQuests/DeepCritical)
38
  [![codecov](https://codecov.io/gh/DeepCritical/GradioDemo/graph/badge.svg?token=B1f05RCGpz)](https://codecov.io/gh/DeepCritical/GradioDemo)
39
  [![Join us on Discord](https://img.shields.io/discord/1109943800132010065?label=Discord&logo=discord&style=flat-square)](https://discord.gg/qdfnvSPcqP)
40
 
src/app.py CHANGED
@@ -623,10 +623,10 @@ def main() -> None:
623
  """Run the Gradio app with MCP server enabled."""
624
  demo = create_demo()
625
  demo.launch(
626
- server_name="0.0.0.0",
627
- server_port=7860,
628
- share=False,
629
- mcp_server=True,
630
  ssr_mode=False, # Fix for intermittent loading/hydration issues in HF Spaces
631
  )
632
 
 
623
  """Run the Gradio app with MCP server enabled."""
624
  demo = create_demo()
625
  demo.launch(
626
+ # server_name="0.0.0.0",
627
+ # server_port=7860,
628
+ # share=False,
629
+ mcp_server=False,
630
  ssr_mode=False, # Fix for intermittent loading/hydration issues in HF Spaces
631
  )
632