Update demo_gui_dev.py
Browse files- demo_gui_dev.py +10 -48
demo_gui_dev.py
CHANGED
|
@@ -281,40 +281,23 @@ if st.sidebar.button("Run Deterministic Exclusion Demo", type="primary"):
|
|
| 281 |
|
| 282 |
st.success("Inference complete.")
|
| 283 |
|
| 284 |
-
st.sidebar.info("""
|
| 285 |
-
💡 **Production Deployment**
|
| 286 |
-
This is a reference implementation. For enterprise features, licensing, or partnerships:
|
| 287 |
-
**[verhash.com](https://verhash.com)** | **ryan@verhash.net**
|
| 288 |
-
""")
|
| 289 |
-
|
| 290 |
st.sidebar.markdown("---")
|
| 291 |
-
|
| 292 |
-
st.sidebar.
|
| 293 |
-
|
| 294 |
-
|
| 295 |
-
|
| 296 |
-
Deterministic AI governance through physics-based substrate computation.
|
| 297 |
-
|
| 298 |
-
**Links:**
|
| 299 |
-
- [verhash.com](https://verhash.com)
|
| 300 |
-
- [GitHub](https://github.com/Rymley/Deterministic-Governance-Mechanism)
|
| 301 |
-
- [Documentation](https://verhash.com/docs)
|
| 302 |
-
|
| 303 |
-
**Contact:**
|
| 304 |
-
ryan@verhash.net
|
| 305 |
-
|
| 306 |
-
**Patent Pending**
|
| 307 |
-
*Priority: January 25, 2026*
|
| 308 |
""")
|
| 309 |
|
| 310 |
-
st.sidebar.caption("© 2026 Verhash LLC")
|
| 311 |
-
|
| 312 |
|
| 313 |
# ============================================================================
|
| 314 |
# Main Content Area
|
| 315 |
# ============================================================================
|
| 316 |
|
| 317 |
|
|
|
|
|
|
|
|
|
|
| 318 |
# Create tabs
|
| 319 |
tab1, tab2, tab3, tab4 = st.tabs(["Mechanism Demo", "LLM Guardrail", "Live LLM Testing", "Explain & Tune"])
|
| 320 |
|
|
@@ -1336,29 +1319,8 @@ with tab4:
|
|
| 1336 |
|
| 1337 |
|
| 1338 |
# ============================================================================
|
| 1339 |
-
#
|
| 1340 |
# ============================================================================
|
| 1341 |
|
| 1342 |
st.markdown("---")
|
| 1343 |
-
|
| 1344 |
-
footer_col1, footer_col2, footer_col3 = st.columns(3)
|
| 1345 |
-
|
| 1346 |
-
with footer_col1:
|
| 1347 |
-
st.markdown("### Verhash LLC")
|
| 1348 |
-
st.markdown("**Technology Licensing & Partnerships**")
|
| 1349 |
-
st.markdown("[ryan@verhash.net](mailto:ryan@verhash.net)")
|
| 1350 |
-
|
| 1351 |
-
with footer_col2:
|
| 1352 |
-
st.markdown("### Resources")
|
| 1353 |
-
st.markdown("- [Website](https://verhash.com)")
|
| 1354 |
-
st.markdown("- [GitHub](https://github.com/Rymley/Deterministic-Governance-Mechanism)")
|
| 1355 |
-
st.markdown("- [Documentation](https://verhash.com/docs)")
|
| 1356 |
-
st.markdown("- [API Access](https://verhash.com/api)")
|
| 1357 |
-
|
| 1358 |
-
with footer_col3:
|
| 1359 |
-
st.markdown("### Patent Notice")
|
| 1360 |
-
st.markdown("Demonstrates concepts from pending patent application")
|
| 1361 |
-
st.markdown("**Priority Date:** January 25, 2026")
|
| 1362 |
-
st.markdown("**Applicant:** Verhash LLC")
|
| 1363 |
-
|
| 1364 |
-
st.caption("© 2026 Verhash LLC | Reference Implementation")
|
|
|
|
| 281 |
|
| 282 |
st.success("Inference complete.")
|
| 283 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 284 |
st.sidebar.markdown("---")
|
| 285 |
+
st.sidebar.markdown("### 📞 Contact")
|
| 286 |
+
st.sidebar.caption("""
|
| 287 |
+
**Verhash LLC** | [verhash.com](https://verhash.com)
|
| 288 |
+
📧 [ryan@verhash.net](mailto:ryan@verhash.net)
|
| 289 |
+
*Patent Pending (Jan 2026)*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 290 |
""")
|
| 291 |
|
|
|
|
|
|
|
| 292 |
|
| 293 |
# ============================================================================
|
| 294 |
# Main Content Area
|
| 295 |
# ============================================================================
|
| 296 |
|
| 297 |
|
| 298 |
+
st.success("✨ **Live Demo** - Testing deterministic AI governance on real LLMs")
|
| 299 |
+
st.info("💼 **Enterprise Deployment?** Contact [ryan@verhash.net](mailto:ryan@verhash.net) for production licensing")
|
| 300 |
+
|
| 301 |
# Create tabs
|
| 302 |
tab1, tab2, tab3, tab4 = st.tabs(["Mechanism Demo", "LLM Guardrail", "Live LLM Testing", "Explain & Tune"])
|
| 303 |
|
|
|
|
| 1319 |
|
| 1320 |
|
| 1321 |
# ============================================================================
|
| 1322 |
+
# Compact Footer
|
| 1323 |
# ============================================================================
|
| 1324 |
|
| 1325 |
st.markdown("---")
|
| 1326 |
+
st.caption("© 2026 Verhash LLC | Deterministic Governance Reference Implementation")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|