File size: 511 Bytes
fbf3c28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
# Simple script to run Nova PyTorch Runner continuously

# Source environment variables (conceptual)
# In a real setup, you would source your .env file or set these securely
# source /data/adaptai/projects/elizabeth/config/.env

export POSTGRES_DSN="sqlite:///data/adaptai/projects/elizabeth/state/nova_session_store.db"
export MODEL_NAME="Qwen/Qwen3-8B-Instruct"

echo "--- Starting Nova PyTorch Runner ---"
echo "Using DB: "
echo "Using Model: "

while true; do
  echo "Running nova_runner.py..."