Marcus Ramalho Claude Opus 4.8 commited on
Commit ·
137241f
1
Parent(s): f7a11cd
docs: Field Notes draft, DEPLOY guide + social post; bundle warmup asset
Browse files- FIELD_NOTES.md: blog draft (Field Notes badge) telling the story + decisions
- DEPLOY.md: exact HF Space/ZeroGPU deploy steps + social post draft
- assets/warmup.jpg + app.py warmup path made self-contained (Space-safe)
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
app.py
CHANGED
|
@@ -162,7 +162,7 @@ if __name__ == "__main__":
|
|
| 162 |
if os.environ.get("IRIS_WARMUP") == "1":
|
| 163 |
print("Warmup...", flush=True)
|
| 164 |
try:
|
| 165 |
-
vlm.describe(str(HERE
|
| 166 |
stt.transcribe(tts.synthesize("test"))
|
| 167 |
print("Warmup OK", flush=True)
|
| 168 |
except Exception as e:
|
|
|
|
| 162 |
if os.environ.get("IRIS_WARMUP") == "1":
|
| 163 |
print("Warmup...", flush=True)
|
| 164 |
try:
|
| 165 |
+
vlm.describe(str(HERE / "assets" / "warmup.jpg"), "test")
|
| 166 |
stt.transcribe(tts.synthesize("test"))
|
| 167 |
print("Warmup OK", flush=True)
|
| 168 |
except Exception as e:
|