Upload 16 files
Browse files
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
assets/social_card.png filter=lfs diff=lfs merge=lfs -text
|
HF_RUNTIME_FIX_RECEIPT_7.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# HF Runtime Fix Receipt 7 — Social Card / X Preview Patch
|
| 2 |
+
|
| 3 |
+
Generated: 2026-06-16T22:15:32.087786Z
|
| 4 |
+
|
| 5 |
+
## Patch target
|
| 6 |
+
Fold the provided Substrate Atomization image into the Hugging Face Space so the Space has a declared social/thumbnail image for link preview surfaces, including X cards where the platform accepts the upstream OpenGraph thumbnail.
|
| 7 |
+
|
| 8 |
+
## Changes made
|
| 9 |
+
|
| 10 |
+
- Added `assets/social_card.png`.
|
| 11 |
+
- Resized/cropped the provided image to 1200 × 630 px.
|
| 12 |
+
- Updated README Space metadata with:
|
| 13 |
+
|
| 14 |
+
```yaml
|
| 15 |
+
thumbnail: assets/social_card.png
|
| 16 |
+
short_description: Atomized video transfer with source-return receipt
|
| 17 |
+
```
|
| 18 |
+
|
| 19 |
+
## Runtime boundary
|
| 20 |
+
|
| 21 |
+
No app runtime logic changed.
|
| 22 |
+
No atomization logic changed.
|
| 23 |
+
No hashing logic changed.
|
| 24 |
+
No trace-stack logic changed.
|
| 25 |
+
No data-hologram logic changed.
|
| 26 |
+
No HIR × OAM receipt logic changed.
|
| 27 |
+
No preview-rehydration logic changed.
|
| 28 |
+
|
| 29 |
+
This is a social-card / metadata patch only.
|
| 30 |
+
|
| 31 |
+
## Expected result
|
| 32 |
+
|
| 33 |
+
After upload/rebuild, Hugging Face should use `assets/social_card.png` as the Space thumbnail/social image. X may cache old previews; if it does, reposting after cache refresh or waiting for X to re-scrape may be required.
|
HF_Substrate_Video_Atomization_Runtime_v0_1_1_SOCIAL_CARD_PATCH.zip.sha256
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
3ddfae2601cceffe8bcebf198ceb417c40b0a47b8001108099dc48045a1d88bf HF_Substrate_Video_Atomization_Runtime_v0_1_1_SOCIAL_CARD_PATCH.zip
|
README.md
CHANGED
|
@@ -9,7 +9,8 @@ python_version: 3.11
|
|
| 9 |
app_file: app.py
|
| 10 |
pinned: false
|
| 11 |
license: cc-by-nc-sa-4.0
|
| 12 |
-
short_description:
|
|
|
|
| 13 |
---
|
| 14 |
|
| 15 |
# Substrate Video Atomization Runtime v0.1.1
|
|
@@ -59,3 +60,14 @@ This packet pins `huggingface_hub==0.25.2` because Gradio 4.44.x can import `HfF
|
|
| 59 |
## Runtime compatibility patch 3
|
| 60 |
|
| 61 |
This packet removes `type="filepath"` from the `gr.Video(...)` upload component because Gradio 4.44.x rejects that keyword on `Video.__init__`. The callback still receives the uploaded video path, so the source-bound atomization route is unchanged.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
app_file: app.py
|
| 10 |
pinned: false
|
| 11 |
license: cc-by-nc-sa-4.0
|
| 12 |
+
short_description: Atomized video transfer with source-return receipt
|
| 13 |
+
thumbnail: assets/social_card.png
|
| 14 |
---
|
| 15 |
|
| 16 |
# Substrate Video Atomization Runtime v0.1.1
|
|
|
|
| 60 |
## Runtime compatibility patch 3
|
| 61 |
|
| 62 |
This packet removes `type="filepath"` from the `gr.Video(...)` upload component because Gradio 4.44.x rejects that keyword on `Video.__init__`. The callback still receives the uploaded video path, so the source-bound atomization route is unchanged.
|
| 63 |
+
|
| 64 |
+
|
| 65 |
+
## Social card / X preview
|
| 66 |
+
|
| 67 |
+
This packet includes `assets/social_card.png` and declares it in the Space README front matter as:
|
| 68 |
+
|
| 69 |
+
```yaml
|
| 70 |
+
thumbnail: assets/social_card.png
|
| 71 |
+
```
|
| 72 |
+
|
| 73 |
+
The image is a 1200 × 630 social-card render for link preview surfaces. It is display metadata only; it does not alter runtime atomization, trace stack, receipt, preview, or packet logic.
|
assets/social_card.png
ADDED
|
Git LFS Details
|