AbstractPhil commited on
Commit
080430e
·
verified ·
1 Parent(s): 91ec41a

pin package to exact commit (stale pip cache served pre-KV-cache 0.1.x — prefill missing); print installed version at boot

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -28,6 +28,8 @@ except Exception: # local testing without the spaces runtime
28
  def GPU(fn=None, **kw):
29
  return fn if fn is not None else (lambda f: f)
30
 
 
 
31
  from geolip.alephllm.presets import PRESETS, AlephLMConfig
32
  from geolip.alephllm.model.alephlm import AlephLM
33
 
 
28
  def GPU(fn=None, **kw):
29
  return fn if fn is not None else (lambda f: f)
30
 
31
+ import geolip.alephllm as _al
32
+ print(f"[boot] geolip.alephllm {_al.__version__}")
33
  from geolip.alephllm.presets import PRESETS, AlephLMConfig
34
  from geolip.alephllm.model.alephlm import AlephLM
35