#!/bin/bash

echo "========================================"
echo "TRINITY LOCAL SERVER - COMPLETE SETUP"
echo "========================================"
echo

echo "Checking Python installation..."
if ! command -v python3 &> /dev/null; then
    echo "ERROR: Python 3 is not installed!"
    echo "Please install Python 3 from https://python.org"
    exit 1
fi

echo "Python found!"
echo

echo "Starting Trinity Complete Server..."
echo "Server will run on: http://localhost:57611"
echo "All 9 Trinity AI models available!"
echo
echo "Press Ctrl+C to stop the server"
echo

python3 trinity_local_server_complete.py
