Update app.py
Browse filesFix footer HTML block after system card
app.py
CHANGED
|
@@ -623,23 +623,27 @@ with gr.Blocks(
|
|
| 623 |
</div>
|
| 624 |
"""
|
| 625 |
)
|
|
|
|
|
|
|
| 626 |
<div id="footer-note">
|
| 627 |
-
<p>
|
| 628 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 629 |
</div>
|
| 630 |
"""
|
| 631 |
-
|
| 632 |
-
|
| 633 |
-
run_button.click(
|
| 634 |
-
fn=run_humai_avatar,
|
| 635 |
-
inputs=[domain_input, mode_input, scenario_input, priority_input, user_context_input],
|
| 636 |
-
outputs=[avatar_output, mission_output, json_output],
|
| 637 |
-
)
|
| 638 |
-
clear_button.click(
|
| 639 |
-
fn=clear_inputs,
|
| 640 |
-
inputs=[],
|
| 641 |
-
outputs=[domain_input, mode_input, scenario_input, priority_input, user_context_input, avatar_output, mission_output, json_output],
|
| 642 |
-
)
|
| 643 |
|
| 644 |
|
| 645 |
if __name__ == "__main__":
|
|
|
|
| 623 |
</div>
|
| 624 |
"""
|
| 625 |
)
|
| 626 |
+
gr.HTML(
|
| 627 |
+
"""
|
| 628 |
<div id="footer-note">
|
| 629 |
+
<p>
|
| 630 |
+
<strong>Public demonstrator note:</strong>
|
| 631 |
+
This Hugging Face Space currently runs as a deterministic enterprise
|
| 632 |
+
MightHub DOA laboratory. It is designed for demo safety, explainability
|
| 633 |
+
and future integration with Gemini / Vertex AI, Firebase, Google Maps,
|
| 634 |
+
Azure AI Foundry, Hugging Face model artifacts, NVIDIA-oriented
|
| 635 |
+
inference infrastructure and PitchAvatar or custom avatar layers.
|
| 636 |
+
</p>
|
| 637 |
+
|
| 638 |
+
<p>
|
| 639 |
+
<strong>Product boundary:</strong>
|
| 640 |
+
HumAI is advisory, human-in-the-loop and demonstration-oriented in this version.
|
| 641 |
+
It does not replace human judgment, public authority, legal review or
|
| 642 |
+
operational command.
|
| 643 |
+
</p>
|
| 644 |
</div>
|
| 645 |
"""
|
| 646 |
+
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 647 |
|
| 648 |
|
| 649 |
if __name__ == "__main__":
|