Spaces:
Running on Zero
Running on Zero
pin package to exact commit (stale pip cache served pre-KV-cache 0.1.x — prefill missing); print installed version at boot
Browse files
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 |
|