ADAPT-Chase's picture
Add files using upload-large-folder tool
fbf3c28 verified
#!/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..."