Instructions to use Subject-Emu-5259/NeuralAI with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use Subject-Emu-5259/NeuralAI with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
File size: 609 Bytes
38b4eff | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | #!/bin/bash
# NeuralAI Status Checker (Unified Service)
# Shows status of the unified NeuralAI service
echo "NeuralAI Service Status (v5.1)"
echo "=============================="
echo ""
# Check unified service
echo "Unified Core Service (port 5000):"
if curl -s http://localhost:5000/api/status 2>/dev/null | python3 -m json.tool 2>/dev/null; then
echo " ✓ Running (Ready)"
else
echo " ✗ Offline"
fi
echo ""
# Show PIDs
echo "Process IDs:"
pid=$(pgrep -f "neural_core_service.py")
if [ -n "$pid" ]; then
echo " • Core: $pid (running)"
else
echo " • Core: Not found"
fi
echo ""
|