Spaces:
Running
Running
Joseph Pollack
commited on
adds fixes interface login - attempt
Browse files- .github/README.md +1 -1
- README.md +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
|
| 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 |
-
[](https://codecov.io/gh/DeepCritical/GradioDemo)
|
| 39 |
[](https://discord.gg/qdfnvSPcqP)
|
| 40 |
|
|
|
|
| 32 |
|
| 33 |
<div align="center">
|
| 34 |
|
| 35 |
+
[](https://github.com/DeepCritical/GradioDemo)
|
| 36 |
+
[](deepcritical.github.io/GradioDemo/)
|
| 37 |
+
[](https://huggingface.co/spaces/DataQuests/DeepCritical)
|
| 38 |
[](https://codecov.io/gh/DeepCritical/GradioDemo)
|
| 39 |
[](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=
|
| 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 |
|