Version 0.0.1 #2

Merged
dguiducci merged 42 commits from main into release 2026-07-22 14:44:42 +01:00
6 changed files with 45 additions and 7 deletions
Showing only changes of commit 0ee5fb2c25 - Show all commits
+3 -1
View File
@@ -17,7 +17,8 @@
#
# The tarball contains everything needed to run (or uninstall) Skald Circle:
# bin/skald, bin/skald-setup, web/, agents/, skills/,
# default.config.yaml, providers.yaml, requirements.txt, run.sh, update.sh, uninstall.sh
# default.config.yaml, providers.yaml, requirements.txt,
# requirements-optional.txt, run.sh, update.sh, uninstall.sh
set -eu
@@ -95,6 +96,7 @@ cp -r skills "$STAGING/skills"
cp default.config.yaml "$STAGING/default.config.yaml"
cp providers.yaml "$STAGING/providers.yaml"
cp requirements.txt "$STAGING/requirements.txt"
cp requirements-optional.txt "$STAGING/requirements-optional.txt"
cp run.sh "$STAGING/run.sh"
cp update.sh "$STAGING/update.sh"
cp uninstall.sh "$STAGING/uninstall.sh"
+9
View File
@@ -397,6 +397,15 @@ echo ""
# Write channel tag for future updates
echo "$CHANNEL" > "$INSTALL_DIR/.release-channel"
# ── Hint about optional deps ──────────────────────────────────────────────────
if [ -f "${INSTALL_DIR}/requirements-optional.txt" ]; then
echo ""
info "💡 Optional GPU/ML dependencies available:"
info " ${INSTALL_DIR}/requirements-optional.txt"
echo " Install them manually if you use the Orpheus TTS plugin:"
echo " cd ${INSTALL_DIR} && .venv/bin/pip install -r requirements-optional.txt"
fi
echo " Server : ${INSTALL_DIR}/run.sh"
echo " Binary : ${INSTALL_DIR}/bin/skald"
echo " Setup : ${INSTALL_DIR}/bin/skald-setup"
+9
View File
@@ -403,6 +403,15 @@ echo ""
echo "release" > "$INSTALL_DIR/.release-channel"
echo "$VERSION" > "$INSTALL_DIR/.release-version"
# ── Hint about optional deps ──────────────────────────────────────────────────
if [ -f "${INSTALL_DIR}/requirements-optional.txt" ]; then
echo ""
info "💡 Optional GPU/ML dependencies available:"
info " ${INSTALL_DIR}/requirements-optional.txt"
echo " Install them manually if you use the Orpheus TTS plugin:"
echo " cd ${INSTALL_DIR} && .venv/bin/pip install -r requirements-optional.txt"
fi
echo " Server : ${INSTALL_DIR}/run.sh"
echo " Binary : ${INSTALL_DIR}/bin/skald"
echo " Setup : ${INSTALL_DIR}/bin/skald-setup"
+13
View File
@@ -0,0 +1,13 @@
# Orpheus TTS 3B (plugin-tts-orpheus-3b) — GPU-heavy dependencies
# Install only if you enable the Orpheus TTS plugin:
# pip install -r requirements-optional.txt
#
# NOTE: torch and bitsandbytes pull in CUDA libraries (~GB). On a headless
# server (no NVIDIA GPU) these are completely unnecessary, so they are kept
# in a separate file.
torch
transformers
snac
bitsandbytes
huggingface_hub
+2 -6
View File
@@ -16,12 +16,8 @@ trendspyg>=0.7.0
kokoro-onnx
soundfile
# Orpheus TTS 3B (plugin-tts-orpheus-3b) — heavy deps, only needed when plugin is enabled
torch
transformers
snac
bitsandbytes
huggingface_hub
# Orpheus TTS 3B (plugin-tts-orpheus-3b) — heavy deps moved to requirements-optional.txt
# See requirements-optional.txt if you need the Orpheus TTS plugin.
fastapi
uvicorn
scipy
+9
View File
@@ -207,6 +207,15 @@ fi
start_service
# ── Hint about optional deps ──────────────────────────────────────────────────
if [ -f "${INSTALL_DIR}/requirements-optional.txt" ]; then
info "💡 Optional GPU/ML dependencies available:"
info " ${INSTALL_DIR}/requirements-optional.txt"
echo " Install them manually if you use the Orpheus TTS plugin:"
echo " cd ${INSTALL_DIR} && .venv/bin/pip install -r requirements-optional.txt"
echo ""
fi
# ── Done ──────────────────────────────────────────────────────────────────────
echo ""
info "✅ Skald Circle updated to ${DISPLAY_VERSION}!"