/
vshmidt
/
llama.cpp
Обзор
Документация
Войти
/
vshmidt
/
llama.cpp
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tools/server/webui/scripts/dev.sh
57 строк
2 KB
Xuan-Son Nguyen
server: introduce API for serving / loading / unloading multiple models (#17470)
01 дек 2025, 21:41
Не верифицирован
01 дек 2025, 21:41
ec18edf
Код
Авторство
О чём код?
#!/bin/bash # Development script for llama.cpp webui # # This script starts the webui development servers (Storybook and Vite). # Note: You need to start llama-server separately. # # Usage: # bash scripts/dev.sh # npm run dev cd ../../../ # Check and install git hooks if missing check_and_install_hooks() { local hooks_missing=false # Check for required hooks if [ ! -f ".git/hooks/pre-commit" ] || [ ! -f ".git/hooks/pre-push" ] || [ ! -f ".git/hooks/post-push" ]; then hooks_missing=true fi if [ "$hooks_missing" = true ]; then echo "🔧 Git hooks missing, installing them..." cd tools/server/webui if bash scripts/install-git-hooks.sh; then echo "✅ Git hooks installed successfully" else echo "⚠️ Failed to install git hooks, continuing anyway..." fi cd ../../../ else echo "✅ Git hooks already installed" fi } # Install git hooks if needed check_and_install_hooks # Cleanup function cleanup() { echo "🧹 Cleaning up..." exit } # Set up signal handlers trap cleanup SIGINT SIGTERM echo "🚀 Starting development servers..." echo "📝 Note: Make sure to start llama-server separately if needed" cd tools/server/webui # Use --insecure-http-parser to handle malformed HTTP responses from llama-server # (some responses have both Content-Length and Transfer-Encoding headers) storybook dev -p 6006 --ci & NODE_OPTIONS="--insecure-http-parser" vite dev --host 0.0.0.0 & # Wait for all background processes wait