fffiloni's picture
Upload 14 files
c32592f verified
Raw
History Blame
318 Bytes
from __future__ import annotations
ASF_APP_VERSION = "v189.7"
ASF_RELEASE_NAME = "Agentic Space Factory v189.7"
def resolve_app_version(value: str | None = None) -> str:
"""Return the app/eval version used by the backend and worker Jobs."""
clean = (value or "").strip()
return clean or ASF_APP_VERSION