ChatCal.ai-1 / version.py
Peter Michael Gits
feat: Update version to v0.5.5 with environment variable support
19396c4
raw
history blame contribute delete
437 Bytes
"""
Version information for ChatCal Voice-Enabled AI Assistant
"""
__version__ = "0.5.5"
__build_date__ = "2025-08-20T12:11:00"
__description__ = "Voice-Enabled ChatCal AI Assistant with Hugging Face deployment"
def get_version_info():
"""Get detailed version information"""
return {
"version": __version__,
"build_date": __build_date__,
"description": __description__,
"status": "running"
}