Spaces:
Paused
Paused
Peter Michael Gits Claude commited on
Commit ·
34c994a
1
Parent(s): ae59460
test: Create distinctive marker for HF sync verification v0.3.17
Browse files- Update version to 0.3.17 with precise timestamp
- Enhanced FORCE_UPDATE.txt with version check marker
- This commit will help verify if HF factory rebuild picks up latest changes
- If HF shows v0.3.17 in /version endpoint, sync is working
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
- FORCE_UPDATE.txt +4 -3
- version.py +2 -2
FORCE_UPDATE.txt
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
-
Force update file created at 2025-08-19 15:
|
| 2 |
This file exists only to force HuggingFace to recognize new commits.
|
| 3 |
-
Current expected SHA:
|
| 4 |
-
If you see this file, the git sync is working.
|
|
|
|
| 5 |
Delete this file once sync is confirmed.
|
|
|
|
| 1 |
+
Force update file created at 2025-08-19 15:18:00
|
| 2 |
This file exists only to force HuggingFace to recognize new commits.
|
| 3 |
+
Current expected SHA: [will be updated with next commit]
|
| 4 |
+
If you see this file in HF Spaces, the git sync is working.
|
| 5 |
+
VERSION CHECK: v0.3.17 - If HF shows this version, sync is working!
|
| 6 |
Delete this file once sync is confirmed.
|
version.py
CHANGED
|
@@ -2,8 +2,8 @@
|
|
| 2 |
Version information for ChatCal Voice-Enabled AI Assistant
|
| 3 |
"""
|
| 4 |
|
| 5 |
-
__version__ = "0.3.
|
| 6 |
-
__build_date__ = "2025-08-
|
| 7 |
__description__ = "Voice-Enabled ChatCal AI Assistant with Hugging Face deployment"
|
| 8 |
|
| 9 |
def get_version_info():
|
|
|
|
| 2 |
Version information for ChatCal Voice-Enabled AI Assistant
|
| 3 |
"""
|
| 4 |
|
| 5 |
+
__version__ = "0.3.17"
|
| 6 |
+
__build_date__ = "2025-08-19T15:18:00"
|
| 7 |
__description__ = "Voice-Enabled ChatCal AI Assistant with Hugging Face deployment"
|
| 8 |
|
| 9 |
def get_version_info():
|