AI Skill Hub 推荐使用:LLama-GUI 是一款优质的AI工具。AI 综合评分 7.5 分,在同类工具中表现稳健。如果你正在寻找可靠的AI工具解决方案,这是一个值得深入了解的选择。
用户友好的GUI界面,方便配置和启动Llama.cpp
LLama-GUI 是一款基于 JavaScript 开发的开源工具,专注于 installable、gui、javascript 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
用户友好的GUI界面,方便配置和启动Llama.cpp
LLama-GUI 是一款基于 JavaScript 开发的开源工具,专注于 installable、gui、javascript 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 方式一:npm 全局安装 npm install -g llama-gui # 方式二:npx 直接运行(无需安装) npx llama-gui --help # 方式三:项目依赖安装 npm install llama-gui # 方式四:从源码运行 git clone https://github.com/thomas9120/LLama-GUI cd LLama-GUI npm install npm start
# 命令行使用
llama-gui --help
# 基本用法
llama-gui [options] <input>
# Node.js 代码中使用
const llama_gui = require('llama-gui');
const result = await llama_gui.run(options);
console.log(result);
# llama-gui 配置说明 # 查看配置选项 llama-gui --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export LLAMA_GUI_CONFIG="/path/to/config.yml"
<p align="left"> <img src="Llama-GUI%20Logo.png" alt="Llama GUI logo" width="360"> </p>
Lightweight local launcher and control panel for llama.cpp on Windows, macOS, and Linux.
Llama GUI provides a browser UI to: - install prebuilt llama.cpp releases by backend (CPU/CUDA/Vulkan/SYCL/HIP) - use a beginner-friendly Quick Launch tab for fast startup - configure and launch llama-server or llama-cli - chat with the model directly from a built-in chat interface - optionally search the web from Chat with zero API-key setup, using free DuckDuckGo-backed search - monitor process output in real time - view live server stats (prompt tokens, generation speed, KV cache usage) - use OpenAI-compatible endpoint helpers/snippets - manage full launch presets and sampler presets - export Windows preset shortcuts that open Llama GUI with a saved preset already loaded - manage local app updates from GitHub
pip and virtual environment support (python -m venv)llama.cpp binaries you want to installSupported prebuilt backends vary by platform: - Windows: CPU, CUDA, Vulkan, SYCL, HIP - macOS: Apple Silicon (Metal, optional KleidiAI) and Intel CPU builds - Linux: CPU, Vulkan, ROCm, OpenVINO (depends on architecture)
macOS/Linux:
curl -fsSL https://raw.githubusercontent.com/thomas9120/LLama-GUI/main/online_installers/install-online.sh | sh
Windows PowerShell:
irm https://raw.githubusercontent.com/thomas9120/LLama-GUI/main/online_installers/install-online.ps1 | iex
The online installer clones Llama GUI into ~/LLama-GUI on macOS/Linux or %USERPROFILE%\LLama-GUI on Windows, installs the Python dependencies, and starts the app. To install somewhere else, set LLAMA_GUI_INSTALL_DIR before running the command. To install without starting the app, set LLAMA_GUI_NO_START=1.
On Windows, the installer also creates a Llama GUI desktop shortcut. The shortcut starts the local Python server and opens the browser after the app is reachable.
git clone https://github.com/thomas9120/LLama-GUI.git
cd LLama-GUI
./install.sh
Windows: - windows_install.bat
If macOS or Linux reports zsh: permission denied when running a helper script, restore the executable bit and rerun the command:
chmod +x install.sh mac_linux_start.sh mac_linux_silent_start.sh
./mac_linux_start.sh
Platform launch helpers: - Windows: windows_start.bat or windows_startsilent.bat - macOS/Linux: ./mac_linux_start.sh or ./mac_linux_silent_start.sh
http://127.0.0.1:5240 in your browser..gguf files in models/ (or click Open Models), or use the Hugging Face downloader in Quick Launch.If you use Pinokio, you can install and launch Llama GUI through the separate one-click launcher repo:
The Pinokio launcher clones this app, installs the Python dependencies, and starts the local web UI. Llama GUI's own Install tab still manages llama.cpp backend downloads, models, presets, and server launches.
llama.cpp binariesstash-updates.bat from the Llama GUI folder, then start the app and try Update App from GitHub again. This runs git stash -u, which saves local changes instead of deleting them.| Quick Launch | Configure |
|---|---|
|  |  |
| Chat | API |
|---|---|
|  |  |
| Install | Presets |
|---|---|
|  |  |
Sampler presets are available in both Quick Launch and the Sampling section in Configure.
Includes: - built-in presets: Neutral, Balanced, Creative, Precise - custom preset Save, Load, Delete - JSON Import / Export
Current built-ins are tuned to approximate KoboldCpp's simple preset family while keeping the same user-facing preset names: - Neutral: neutralized baseline - Balanced: close to KoboldCpp Simple Balanced - Creative: close to KoboldCpp Simple Creative - Precise: tuned toward KoboldCpp Simple Logical
Storage behavior: - custom sampler presets are stored in browser localStorage - export creates portable .json files - import accepts single-preset or multi-preset JSON
Quick Launch, Configure, and Chat sampler controls all use the same shared sampler state, so decimal values and preset changes stay synchronized across tabs.
Note: loading a full app preset can overwrite sampler values because samplers are part of the full flag set.
Expand All, Collapse All, and Clear controlsMore info, and Beginner tipllama.cpp flags not yet exposed as UI controlsllama-serverllama-serverDefault-friendly behavior includes: - -fit set to on - -c context default set to 16000 - llama-server selected as the default tool
Symptoms: - launch crashes immediately - backend/DLL related errors in output
Fix: - reinstall with a backend that matches your hardware/drivers - use Install -> Repair Install if runtime files are incomplete - if unsure, test with CPU backend first
llama-serverLLama-GUI 是一个轻量级的本地启动器和控制面板,支持 Windows、macOS 和 Linux。它提供了一个浏览器 UI,用于安装预构建的 llama.cpp 版本,快速启动和配置 llama-server。
LLama-GUI 需要 Python 3.9+、pip 和虚拟环境支持、互联网连接(用于下载和更新)以及支持的操作系统和架构。
LLama-GUI 支持在线安装和手动安装。在线安装使用 curl 或 irm 命令下载并安装 LLama-GUI。手动安装需要克隆仓库、安装 Python 依赖项和配置环境。
使用 LLama-GUI 可以快速启动 llama-server、配置和管理 llama-server、使用 Quick Launch 快速启动 llama-server 等。
LLama-GUI 提供了多种配置选项,包括标签栏、搜索功能、展开和折叠控制、自定义启动参数等。用户可以根据自己的需求进行配置。
LLama-GUI 提供了一个 API,用于显示 OpenAI 兼容的端点概览、提供复制就绪的代码片段(cURL、Python SDK、JavaScript)以及远程访问功能等。
LLama-GUI 的 FAQ 部分提供了常见问题的解决方案,包括后端不匹配、启动崩溃、配置错误等问题的解决方法。
LLama-GUI是一个用户友好的GUI界面,方便配置和启动Llama.cpp,但其功能和质量还需要进一步完善
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
总体来看,LLama-GUI 是一款质量良好的AI工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | LLama-GUI |
| 原始描述 | 开源AI工具:User friendly GUI for Llama.cpp for easy configuration and launching.。⭐18 · JavaScript |
| Topics | installableguijavascript |
| GitHub | https://github.com/thomas9120/LLama-GUI |
| License | MIT |
| 语言 | JavaScript |
收录时间:2026-05-24 · 更新时间:2026-05-30 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。