healspace 0.2.0__tar.gz → 0.2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: healspace
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: HealSpace — Guardian AI for Hugging Face Spaces
5
5
  Author: Onyxl · TeraBites
6
6
  License: Apache-2.0
@@ -28,7 +28,7 @@ Or use the standalone guardian (non-Gradio):
28
28
  from .core import HealSpace, heal, diagnose, fix
29
29
  from .errors import KnownError, ErrorReport
30
30
 
31
- __version__ = "0.2.0"
31
+ __version__ = "0.2.1"
32
32
  __author__ = "Onyxl · TeraBites"
33
33
  __license__ = "Apache 2.0"
34
34
  __all__ = ["HealSpace", "heal", "diagnose", "fix", "KnownError", "ErrorReport"]
@@ -14,7 +14,9 @@ from typing import Optional, List, Callable
14
14
  from .errors import KnownError, ErrorReport
15
15
 
16
16
  # ── Lineage seal ──────────────────────────────────────────────────────────────
17
- SEAL = "🛡️ Protected by HealSpace"
17
+ SEAL = "🛡️ Protected by HealSpace"
18
+ SEAL_URL = "https://pypi.org/project/healspace/"
19
+ SEAL_MD = "🛡️ Protected by HealSpace — [click here to learn more](https://pypi.org/project/healspace/)"
18
20
 
19
21
  # ── Auto-fix actions ──────────────────────────────────────────────────────────
20
22
 
@@ -221,7 +223,7 @@ class HealSpace:
221
223
  for r in reports:
222
224
  lines.append(str(r))
223
225
  lines.append("")
224
- lines.append(SEAL)
226
+ lines.append(f"{SEAL} — learn more: {SEAL_URL}")
225
227
  return "\n".join(lines)
226
228
 
227
229
  def _trigger_error() -> str:
@@ -236,7 +238,7 @@ class HealSpace:
236
238
  heal_btn.click (_run_heal, inputs=log_input, outputs=output_box)
237
239
  error_btn.click(_trigger_error, inputs=None, outputs=output_box)
238
240
 
239
- gr.Markdown(f"<center><sub>{SEAL}</sub></center>")
241
+ gr.Markdown(f"<center><sub>{SEAL_MD}</sub></center>")
240
242
 
241
243
  return self
242
244
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: healspace
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: HealSpace — Guardian AI for Hugging Face Spaces
5
5
  Author: Onyxl · TeraBites
6
6
  License: Apache-2.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "healspace"
7
- version = "0.2.0"
7
+ version = "0.2.1"
8
8
  description = "HealSpace — Guardian AI for Hugging Face Spaces"
9
9
  readme = "README.md"
10
10
  license = { text = "Apache-2.0" }
File without changes
File without changes
File without changes