Welcome to AI Playground open source project and AI PC generative AI application suite. This application provides a full suite of generative AI features for chat, image generation, video generation, code assistance, document search, image analysis, and more. Features can run offline on your PC’s Intel® Core™ Ultra with built-in Intel Arc GPU, Intel Arc™ dGPU Series A or B with 8GB+ of vRAM, or NVIDIA RTX GPUs—or you can optionally use Hybrid Cloud mode to run frontier models from providers such as ChatGPT, Claude, Gemini, and Grok while you manage models, cost, and control of your data.
AI Playground is intended to act as an offline alternative to cloud tools such as Gemini, ChatGPT, and Grok. AI Playground leverages libraries from GitHub and Huggingface including:
As a local alternative to cloud AI services, AI Playground is intended to give consumers and AI curious prosumers easy and intuitive access to a wide variety of generative AI features using their Intel powered AI PC. This means you can be offline, without loading sensitive or personal data to 3rd party sites, for free, in a single app without having to know how to install and manage multiple AI backend frameworks. Key features:

Image generation presets Image editing presets Video generation presets
Figure 1: Screenshot of user interface with the light color theme and Chat History Panel and Footer Panel exposed
Figure 2: Screenshot of user interface using the default color theme, with the App Settings Panel and Prompt Settings Panel exposed
AI Playground alpha and beta installers are currently available downloadable executables, or available as a source code from our Github repository. To run AI Playground you must have a PC that meets the following specifications
This is a single packaged installer for all supported hardware mentioned above. This installer simplifies the process for end users to install AI Playground on their PCs. Please note that while this makes the installation process easier, this is open-source beta software, and there may be component and version conflicts. Refer to the Troubleshooting section for known issues.
:new: AI Playground 3.2.0 beta (all SKUs) - Release Notes | Windows Installer | Linux Installer
Previous release: AI Playground 3.1.2 beta-hf3
The following are known situations where your installation may be blocked or interrupted. Review the following to remedy installations issues. If installation issues persist, generate a copy of the log by typing CTRL+SHIFT+I, select the console tab and copy the last few entries of the log written where the installer failed. Provide these details to us via the issues tab here, or via the Intel Insiders Discord, or Graphics forum on Intel's support site.
To get started, clone the repository and navigate to the project directory:
git clone -b dev https://github.com/intel/AI-Playground.git
cd AI-Playground
Install the Node.js ≥ 20 development environment.
Windows / macOS: download the installer from Node.js.
Ubuntu 24.04 / Debian: the distro's apt install nodejs ships Node 18
(no npm) and is too old. Install Node 22 LTS via NodeSource instead:
curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash -
sudo apt install -y nodejs
node --version # expect: v22.x
npm --version # expect: 10.x
Behind a corporate proxy that intercepts deb.nodesource.com, prefix the
curl with --proxy "$http_proxy" and ensure https_proxy is exported.
Navigate to the WebUI directory and run the one-time setup:
cd WebUI
npm run setup
This installs the Node.js dependencies, fetches external resources (uv, 7-Zip
and other tools — see Fetch External Resources
below), provisions the Electron binary, and installs the git pre-commit hook
(Ruff for the Python backends, ESLint + Prettier for the WebUI — see
.pre-commit-config.yaml). The hook step is best effort: if pre-commit is
unavailable it prints how to install it and continues. You can re-run just the
hook install at any time with npm run install-hooks. (Plain npm install
still works if you only want the Node.js dependencies.)
WebUI directory, execute the fetch-external-resources script to download required external resources:This will download uv (Python package manager) and other required tools to the build/resources/ directory.
To start the application in development mode, run:
npm run dev
To build the installer, run:
npm run build
The installer executable will be located in the build/electron folder. Its name
identifies the build it came from: a release tag when the build was started by
pushing one (AI.Playground-3.2.0-alpha.test8.exe), otherwise the app version
plus the short commit (AI.Playground-3.2.0-alpha.8adad7c.exe). The same commit
and tag are shown when hovering the version in the app's footer.
Linux support is experimental. The frontend, AI Backend, LlamaCPP and ComfyUI backends run on Ubuntu x64. The packaged installer/AppImage/.deb supports Ubuntu 24 or newer only. Complete host GPU setup before installing the app — see
docs/linux-intel-gpu-setup.md(Intel OMIX + Vulkan).
The Linux build produces both a single, portable AppImage (no installation, no
root) and a .deb package for a system-wide install via apt.
Build it from the WebUI directory:
cd WebUI
npm install # install build dependencies
npm run fetch-external-resources # one-time: downloads uv/7zip
npm run build:linux
Both AI.Playground-<build>.AppImage and AI.Playground-<build>.deb are
written to build/electron. The build host needs ar (from binutils,
usually already present) to assemble the .deb.
Install FUSE once (required to run any AppImage):
sudo apt install -y libfuse2t64
Make it executable and start the app:
cd build/electron
chmod +x AI.Playground-*.AppImage
./AI.Playground-*.AppImage
--no-sandbox is baked into the launcher (see build/scripts/after-pack.cjs),
so you can also start the app by double-clicking the AppImage in your file
manager — provided the file manager is allowed to run executables (in GNOME
Files: Preferences → "Executable Text Files" / right-click → Run, or
chmod +x as above). Do not start it with sudo — Electron refuses to
run as root.
Alternatively, install the .deb instead of running the AppImage. apt
resolves the runtime dependencies declared in the package
(libgtk-3-0, libnss3, libasound2, libdbus-1-3, pciutils, python3,
git):
cd build/electron
sudo apt install ./AI.Playground-*.deb
This installs the app system-wide; launch it as AI Playground from your
application menu or run ai-playground from a terminal. --no-sandbox is
baked into the launcher here too. Uninstall with sudo apt remove ai-playground.
OpenVINO Ubuntu dependencies are checked during OpenVINO backend setup.
If required packages are missing, AI Playground can open a terminal installer. The terminal asks for your sudo password and runs the package install command.
On Ubuntu, the install command is:
sudo apt-get update
sudo apt-get install -y python3 python3-venv libtbb12 libhwloc15 libgomp1 libnuma1 ocl-icd-libopencl1 libfuse2t64
ComfyUI Ubuntu build dependencies are checked during ComfyUI backend setup.
ComfyUI is cloned with git and some of its Python dependencies (e.g.
insightface) are compiled from source during install, which needs a C
compiler and the CPython headers. On a fresh Ubuntu these are missing, so
AI Playground prompts to install them automatically. To install them
manually:
sudo apt-get update
sudo apt-get install -y git build-essential python3-dev
AI Playground downloads tools at build time (uv, 7zip) and backend binaries
on first run (llama.cpp, OpenVINO/OVMS). Both honor the standard proxy
environment variables when they are set — export them before building or
launching:
export https_proxy="http://proxy.example.com:port"
export http_proxy="http://proxy.example.com:port"
export no_proxy="localhost,127.0.0.1" # hosts to reach directly
With these set:
npm run fetch-external-resources / npm run build:linux) routes
Node's downloads through the proxy (the script runs with
NODE_USE_ENV_PROXY=1).net.fetch) at the proxy, so llama.cpp and OVMS downloads
succeed.⚠️ Launching from a file manager won't pick up the proxy. Double-clicking the AppImage starts it from the desktop session, which does not inherit
http_proxyexported in~/.profileor~/.bashrc. Either launch the AppImage from a terminal where the variables are exported, or configure a system-wide proxy (e.g. GNOME Settings → Network → Network Proxy) so the desktop session provides them.
If your network blocks the downloads entirely, you can also pre-place the build
tools manually: drop the extracted uv/7zip binaries into
WebUI/build/resources/ (the fetch script skips any file already present)
before running the build.
A common gotcha on Intel networks: apt and curl honor no_proxy exactly,
but a broad entry like no_proxy=*.intel.com will also match the
externally-hosted CDN repositories.intel.com (resolves to AWS), causing
apt update to hang trying to reach it directly through the corporate firewall.
Work around it by scoping the proxy override per-host rather than rewriting
no_proxy:
# /etc/apt/apt.conf.d/99-intel-proxy
Acquire::http::Proxy::repositories.intel.com "http://proxy.example.com:port";
Acquire::https::Proxy::repositories.intel.com "http://proxy.example.com:port";
For interactive curl calls (e.g. fetching the NPU driver tarball from
github.com which redirects to AWS), pass --proxy "$http_proxy" explicitly.
AI Playground does not ship with generative AI models pre-installed. When a task needs a model that is not on disk, the app prompts you to download it (after you accept the model’s terms on the provider site). Use the Model Manager (cylinder icon in the title bar) to browse, search, filter, favorite, download, add Hugging Face paths, and remove models. You can also download models from HuggingFace.co or CivitAI.com and place them in the appropriate model folder.
Models currently linked from the application
| Model Path / Name | Model Card (HF) | License Link |
|---|---|---|
| AdamCodd/vit-base-nsfw-detector | Model Card | Apache 2.0 |
| Aitrepreneur/insightface/inswapper_128.onnx | Model Card | Non-Commercial |
| alimama-creative/FLUX.1-Turbo-Alpha | Model Card | FLUX.1-dev License |
| BGE Small EN v1.5 (GGUF) | Model Card | MIT License |
| black-forest-labs/FLUX.2-klein-4b-fp8/flux-2-klein-4b-fp8.safetensors | Model Card | Apache 2.0 |
| city96/t5-v1_1-xxl-encoder-gguf/t5-v1_1-xxl-encoder-Q3_K_M.gguf | Model Card | Apache 2.0 |
| city96/t5-v1_1-xxl-encoder-gguf/t5-v1_1-xxl-encoder-Q4_K_M.gguf | Model Card | Apache 2.0 |
| city96/umt5-xxl-encoder-gguf/umt5-xxl-encoder-Q4_K_M.gguf | Model Card | Apache 2.0 |
| comfyanonymous/flux_text_encoders/clip_l.safetensors | Model Card | Apache 2.0 |
| comfyanonymous/flux_text_encoders/t5xxl_fp8_e4m3fn_scaled.safetensors | Model Card | Apache 2.0 |
| Comfy-Org/flux1-kontext-dev/flux1-dev-kontext_fp8_scaled.safetensors | Model Card | FLUX.1-dev License |
| Comfy-Org/Lumina_Image_2.0_Repackaged/ae.safetensors | Model Card | Apache 2.0 |
| Comfy-Org/Real-ESRGAN_repackaged/RealESRGAN_x4plus.safetensors | Model Card | BSD-3-Clause |
| Comfy-Org/Wan_2.1_ComfyUI_repackaged/wan_2.1_vae.safetensors | Model Card | Wan 2.1 License |
| Comfy-Org/z_image_turbo/ae.safetensors | Model Card | Apache 2.0 |
| Comfy-Org/z_image_turbo/qwen_3_4b.safetensors | Model Card | Apache 2.0 |
| Comfy-Org/z_image_turbo/z_image_turbo_bf16.safetensors | Model Card | Apache 2.0 |
| DeepSeek-R1-Distill-Qwen 1.5B | Model Card | MIT License |
| DeepSeek-R1-Distill-Qwen 7B | Model Card | MIT License |
| Gemma 3 4B IT (Unsloth) | Model Card | Gemma License |
| gmk123/GFPGAN/GFPGANv1.4.pth | Model Card | Apache 2.0 |
| GPT-OSS 20B (Unsloth) | Model Card | Apache 2.0 |
| InternVL2 4B (OV) | Model Card | Apache 2.0 |
| latent-consistency/lcm-lora-sdv1-5/pytorch_lora_weights.safetensors | Model Card | OpenRAIL++ |
| latent-consistency/lcm-lora-sdxl/pytorch_lora_weights.safetensors | Model Card | OpenRAIL++ |
| Lightricks/LTX-Video/ltxv-2b-0.9.6-distilled-04-25.safetensors | Model Card | Apache 2.0 |
| Llama 3.2 3B Instruct | Model Card | Llama 3.2 License |
| lllyasviel/fooocus_inpaint/fooocus_inpaint_head.pth | Model Card | OpenRAIL |
| lllyasviel/fooocus_inpaint/inpaint_v26.fooocus.patch | Model Card | OpenRAIL |
| Lykon/DreamShaper/DreamShaper_8_pruned.safetensors | Model Card | OpenRAIL-M |
| Lykon/dreamshaper-8-inpainting/text_encoder/model.safetensors | Model Card | OpenRAIL-M |
| Lykon/dreamshaper-8-inpainting/unet/model.safetensors | Model Card | OpenRAIL-M |
| Lykon/dreamshaper-8-inpainting/vae/model.safetensors | Model Card | OpenRAIL-M |
| Meta-Llama 3.1 8B Instruct | Model Card | Llama 3.1 License |
| Mistral 7B Instruct v0.2 (OV) | Model Card | Apache 2.0 |
| Mistral 7B Instruct v0.3 | Model Card | Apache 2.0 |
| Mistral 7B Instruct v0.3 (OV) | Model Card | Apache 2.0 |
| Nomic Embed Text v1.5 (GGUF) | Model Card | Apache 2.0 |
| Phi-3 Mini 4k Instruct (OV) | Model Card | MIT License |
| Phi-3.5 Mini Instruct (OV) | Model Card | MIT License |
| QuantStack/Wan2.1_14B_VACE-GGUF/Wan2.1_14B_VACE-Q8_0.gguf | Model Card | Apache 2.0 |
| Qwen2-VL 7B Instruct (OV) | Model Card | Apache 2.0 |
| Qwen3 4B (OV) | Model Card | Apache 2.0 |
| Qwen3 4B (Unsloth) | Model Card | Apache 2.0 |
| Qwen3 4B Instruct 2507 (Unsloth) | Model Card | Apache 2.0 |
| Qwen3-VL 4B Instruct (Unsloth) | Model Card | Apache 2.0 |
| RunDiffusion/Juggernaut-XL-v9/RunDiffusionPhoto_v2.safetensors | Model Card | OpenRAIL-M |
| SmolLM2 1.7B Instruct | Model Card | Apache 2.0 |
| stabilityai/control-lora/rank128-canny-rank128.safetensors | Model Card | SAI Community |
| tencent/Hunyuan3D-2.1/hunyuan3d-dit-v2-1/model.fp16.ckpt | Model Card | Hunyuan3D License |
| tencent/Hunyuan3D-2/hunyuan3d-dit-v2-0/model.fp16.safetensors | Model Card | Hunyuan3D License |
| TinyLlama 1.1B Chat (OV) | Model Card | Apache 2.0 |
| Whisper (OV) | Model Card | Apache 2.0 |
Be sure to check license terms for any model used in AI Playground especially taking note of any restrictions.
Check the User Guide for details or watch this video on how to add alternative Stable Diffusion models to AI Playground
For information on AI Playground terms, license and disclaimers, visit the project and files on GitHub repo:
License | Notices & Disclaimers
The software may include third party components with separate legal notices or governed by other agreements, as may be described in the Third Party Notices file accompanying the software.
License details for borrowed code and components can be found in our 3rdpartynoticeslicense file.
Additionally, these entities and their work stand out as are fundamental to AI Playground.
TypeScript
70.0%
Vue
20.5%
Python
7.9%
Welcome to AI Playground open source project and AI PC generative AI application suite. This application provides a full suite of generative AI features for chat, image generation, video generation, code assistance, document search, image analysis, and more. Features can run offline on your PC’s Intel® Core™ Ultra with built-in Intel Arc GPU, Intel Arc™ dGPU Series A or B with 8GB+ of vRAM, or NVIDIA RTX GPUs—or you can optionally use Hybrid Cloud mode to run frontier models from providers such as ChatGPT, Claude, Gemini, and Grok while you manage models, cost, and control of your data.
AI Playground is intended to act as an offline alternative to cloud tools such as Gemini, ChatGPT, and Grok. AI Playground leverages libraries from GitHub and Huggingface including:
As a local alternative to cloud AI services, AI Playground is intended to give consumers and AI curious prosumers easy and intuitive access to a wide variety of generative AI features using their Intel powered AI PC. This means you can be offline, without loading sensitive or personal data to 3rd party sites, for free, in a single app without having to know how to install and manage multiple AI backend frameworks. Key features:

Image generation presets Image editing presets Video generation presets
Figure 1: Screenshot of user interface with the light color theme and Chat History Panel and Footer Panel exposed
Figure 2: Screenshot of user interface using the default color theme, with the App Settings Panel and Prompt Settings Panel exposed
AI Playground alpha and beta installers are currently available downloadable executables, or available as a source code from our Github repository. To run AI Playground you must have a PC that meets the following specifications
This is a single packaged installer for all supported hardware mentioned above. This installer simplifies the process for end users to install AI Playground on their PCs. Please note that while this makes the installation process easier, this is open-source beta software, and there may be component and version conflicts. Refer to the Troubleshooting section for known issues.
:new: AI Playground 3.2.0 beta (all SKUs) - Release Notes | Windows Installer | Linux Installer
Previous release: AI Playground 3.1.2 beta-hf3
The following are known situations where your installation may be blocked or interrupted. Review the following to remedy installations issues. If installation issues persist, generate a copy of the log by typing CTRL+SHIFT+I, select the console tab and copy the last few entries of the log written where the installer failed. Provide these details to us via the issues tab here, or via the Intel Insiders Discord, or Graphics forum on Intel's support site.
To get started, clone the repository and navigate to the project directory:
git clone -b dev https://github.com/intel/AI-Playground.git
cd AI-Playground
Install the Node.js ≥ 20 development environment.
Windows / macOS: download the installer from Node.js.
Ubuntu 24.04 / Debian: the distro's apt install nodejs ships Node 18
(no npm) and is too old. Install Node 22 LTS via NodeSource instead:
curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash -
sudo apt install -y nodejs
node --version # expect: v22.x
npm --version # expect: 10.x
Behind a corporate proxy that intercepts deb.nodesource.com, prefix the
curl with --proxy "$http_proxy" and ensure https_proxy is exported.
Navigate to the WebUI directory and run the one-time setup:
cd WebUI
npm run setup
This installs the Node.js dependencies, fetches external resources (uv, 7-Zip
and other tools — see Fetch External Resources
below), provisions the Electron binary, and installs the git pre-commit hook
(Ruff for the Python backends, ESLint + Prettier for the WebUI — see
.pre-commit-config.yaml). The hook step is best effort: if pre-commit is
unavailable it prints how to install it and continues. You can re-run just the
hook install at any time with npm run install-hooks. (Plain npm install
still works if you only want the Node.js dependencies.)
WebUI directory, execute the fetch-external-resources script to download required external resources:This will download uv (Python package manager) and other required tools to the build/resources/ directory.
To start the application in development mode, run:
npm run dev
To build the installer, run:
npm run build
The installer executable will be located in the build/electron folder. Its name
identifies the build it came from: a release tag when the build was started by
pushing one (AI.Playground-3.2.0-alpha.test8.exe), otherwise the app version
plus the short commit (AI.Playground-3.2.0-alpha.8adad7c.exe). The same commit
and tag are shown when hovering the version in the app's footer.
Linux support is experimental. The frontend, AI Backend, LlamaCPP and ComfyUI backends run on Ubuntu x64. The packaged installer/AppImage/.deb supports Ubuntu 24 or newer only. Complete host GPU setup before installing the app — see
docs/linux-intel-gpu-setup.md(Intel OMIX + Vulkan).
The Linux build produces both a single, portable AppImage (no installation, no
root) and a .deb package for a system-wide install via apt.
Build it from the WebUI directory:
cd WebUI
npm install # install build dependencies
npm run fetch-external-resources # one-time: downloads uv/7zip
npm run build:linux
Both AI.Playground-<build>.AppImage and AI.Playground-<build>.deb are
written to build/electron. The build host needs ar (from binutils,
usually already present) to assemble the .deb.
Install FUSE once (required to run any AppImage):
sudo apt install -y libfuse2t64
Make it executable and start the app:
cd build/electron
chmod +x AI.Playground-*.AppImage
./AI.Playground-*.AppImage
--no-sandbox is baked into the launcher (see build/scripts/after-pack.cjs),
so you can also start the app by double-clicking the AppImage in your file
manager — provided the file manager is allowed to run executables (in GNOME
Files: Preferences → "Executable Text Files" / right-click → Run, or
chmod +x as above). Do not start it with sudo — Electron refuses to
run as root.
Alternatively, install the .deb instead of running the AppImage. apt
resolves the runtime dependencies declared in the package
(libgtk-3-0, libnss3, libasound2, libdbus-1-3, pciutils, python3,
git):
cd build/electron
sudo apt install ./AI.Playground-*.deb
This installs the app system-wide; launch it as AI Playground from your
application menu or run ai-playground from a terminal. --no-sandbox is
baked into the launcher here too. Uninstall with sudo apt remove ai-playground.
OpenVINO Ubuntu dependencies are checked during OpenVINO backend setup.
If required packages are missing, AI Playground can open a terminal installer. The terminal asks for your sudo password and runs the package install command.
On Ubuntu, the install command is:
sudo apt-get update
sudo apt-get install -y python3 python3-venv libtbb12 libhwloc15 libgomp1 libnuma1 ocl-icd-libopencl1 libfuse2t64
ComfyUI Ubuntu build dependencies are checked during ComfyUI backend setup.
ComfyUI is cloned with git and some of its Python dependencies (e.g.
insightface) are compiled from source during install, which needs a C
compiler and the CPython headers. On a fresh Ubuntu these are missing, so
AI Playground prompts to install them automatically. To install them
manually:
sudo apt-get update
sudo apt-get install -y git build-essential python3-dev
AI Playground downloads tools at build time (uv, 7zip) and backend binaries
on first run (llama.cpp, OpenVINO/OVMS). Both honor the standard proxy
environment variables when they are set — export them before building or
launching:
export https_proxy="http://proxy.example.com:port"
export http_proxy="http://proxy.example.com:port"
export no_proxy="localhost,127.0.0.1" # hosts to reach directly
With these set:
npm run fetch-external-resources / npm run build:linux) routes
Node's downloads through the proxy (the script runs with
NODE_USE_ENV_PROXY=1).net.fetch) at the proxy, so llama.cpp and OVMS downloads
succeed.⚠️ Launching from a file manager won't pick up the proxy. Double-clicking the AppImage starts it from the desktop session, which does not inherit
http_proxyexported in~/.profileor~/.bashrc. Either launch the AppImage from a terminal where the variables are exported, or configure a system-wide proxy (e.g. GNOME Settings → Network → Network Proxy) so the desktop session provides them.
If your network blocks the downloads entirely, you can also pre-place the build
tools manually: drop the extracted uv/7zip binaries into
WebUI/build/resources/ (the fetch script skips any file already present)
before running the build.
A common gotcha on Intel networks: apt and curl honor no_proxy exactly,
but a broad entry like no_proxy=*.intel.com will also match the
externally-hosted CDN repositories.intel.com (resolves to AWS), causing
apt update to hang trying to reach it directly through the corporate firewall.
Work around it by scoping the proxy override per-host rather than rewriting
no_proxy:
# /etc/apt/apt.conf.d/99-intel-proxy
Acquire::http::Proxy::repositories.intel.com "http://proxy.example.com:port";
Acquire::https::Proxy::repositories.intel.com "http://proxy.example.com:port";
For interactive curl calls (e.g. fetching the NPU driver tarball from
github.com which redirects to AWS), pass --proxy "$http_proxy" explicitly.
AI Playground does not ship with generative AI models pre-installed. When a task needs a model that is not on disk, the app prompts you to download it (after you accept the model’s terms on the provider site). Use the Model Manager (cylinder icon in the title bar) to browse, search, filter, favorite, download, add Hugging Face paths, and remove models. You can also download models from HuggingFace.co or CivitAI.com and place them in the appropriate model folder.
Models currently linked from the application
| Model Path / Name | Model Card (HF) | License Link |
|---|---|---|
| AdamCodd/vit-base-nsfw-detector | Model Card | Apache 2.0 |
| Aitrepreneur/insightface/inswapper_128.onnx | Model Card | Non-Commercial |
| alimama-creative/FLUX.1-Turbo-Alpha | Model Card | FLUX.1-dev License |
| BGE Small EN v1.5 (GGUF) | Model Card | MIT License |
| black-forest-labs/FLUX.2-klein-4b-fp8/flux-2-klein-4b-fp8.safetensors | Model Card | Apache 2.0 |
| city96/t5-v1_1-xxl-encoder-gguf/t5-v1_1-xxl-encoder-Q3_K_M.gguf | Model Card | Apache 2.0 |
| city96/t5-v1_1-xxl-encoder-gguf/t5-v1_1-xxl-encoder-Q4_K_M.gguf | Model Card | Apache 2.0 |
| city96/umt5-xxl-encoder-gguf/umt5-xxl-encoder-Q4_K_M.gguf | Model Card | Apache 2.0 |
| comfyanonymous/flux_text_encoders/clip_l.safetensors | Model Card | Apache 2.0 |
| comfyanonymous/flux_text_encoders/t5xxl_fp8_e4m3fn_scaled.safetensors | Model Card | Apache 2.0 |
| Comfy-Org/flux1-kontext-dev/flux1-dev-kontext_fp8_scaled.safetensors | Model Card | FLUX.1-dev License |
| Comfy-Org/Lumina_Image_2.0_Repackaged/ae.safetensors | Model Card | Apache 2.0 |
| Comfy-Org/Real-ESRGAN_repackaged/RealESRGAN_x4plus.safetensors | Model Card | BSD-3-Clause |
| Comfy-Org/Wan_2.1_ComfyUI_repackaged/wan_2.1_vae.safetensors | Model Card | Wan 2.1 License |
| Comfy-Org/z_image_turbo/ae.safetensors | Model Card | Apache 2.0 |
| Comfy-Org/z_image_turbo/qwen_3_4b.safetensors | Model Card | Apache 2.0 |
| Comfy-Org/z_image_turbo/z_image_turbo_bf16.safetensors | Model Card | Apache 2.0 |
| DeepSeek-R1-Distill-Qwen 1.5B | Model Card | MIT License |
| DeepSeek-R1-Distill-Qwen 7B | Model Card | MIT License |
| Gemma 3 4B IT (Unsloth) | Model Card | Gemma License |
| gmk123/GFPGAN/GFPGANv1.4.pth | Model Card | Apache 2.0 |
| GPT-OSS 20B (Unsloth) | Model Card | Apache 2.0 |
| InternVL2 4B (OV) | Model Card | Apache 2.0 |
| latent-consistency/lcm-lora-sdv1-5/pytorch_lora_weights.safetensors | Model Card | OpenRAIL++ |
| latent-consistency/lcm-lora-sdxl/pytorch_lora_weights.safetensors | Model Card | OpenRAIL++ |
| Lightricks/LTX-Video/ltxv-2b-0.9.6-distilled-04-25.safetensors | Model Card | Apache 2.0 |
| Llama 3.2 3B Instruct | Model Card | Llama 3.2 License |
| lllyasviel/fooocus_inpaint/fooocus_inpaint_head.pth | Model Card | OpenRAIL |
| lllyasviel/fooocus_inpaint/inpaint_v26.fooocus.patch | Model Card | OpenRAIL |
| Lykon/DreamShaper/DreamShaper_8_pruned.safetensors | Model Card | OpenRAIL-M |
| Lykon/dreamshaper-8-inpainting/text_encoder/model.safetensors | Model Card | OpenRAIL-M |
| Lykon/dreamshaper-8-inpainting/unet/model.safetensors | Model Card | OpenRAIL-M |
| Lykon/dreamshaper-8-inpainting/vae/model.safetensors | Model Card | OpenRAIL-M |
| Meta-Llama 3.1 8B Instruct | Model Card | Llama 3.1 License |
| Mistral 7B Instruct v0.2 (OV) | Model Card | Apache 2.0 |
| Mistral 7B Instruct v0.3 | Model Card | Apache 2.0 |
| Mistral 7B Instruct v0.3 (OV) | Model Card | Apache 2.0 |
| Nomic Embed Text v1.5 (GGUF) | Model Card | Apache 2.0 |
| Phi-3 Mini 4k Instruct (OV) | Model Card | MIT License |
| Phi-3.5 Mini Instruct (OV) | Model Card | MIT License |
| QuantStack/Wan2.1_14B_VACE-GGUF/Wan2.1_14B_VACE-Q8_0.gguf | Model Card | Apache 2.0 |
| Qwen2-VL 7B Instruct (OV) | Model Card | Apache 2.0 |
| Qwen3 4B (OV) | Model Card | Apache 2.0 |
| Qwen3 4B (Unsloth) | Model Card | Apache 2.0 |
| Qwen3 4B Instruct 2507 (Unsloth) | Model Card | Apache 2.0 |
| Qwen3-VL 4B Instruct (Unsloth) | Model Card | Apache 2.0 |
| RunDiffusion/Juggernaut-XL-v9/RunDiffusionPhoto_v2.safetensors | Model Card | OpenRAIL-M |
| SmolLM2 1.7B Instruct | Model Card | Apache 2.0 |
| stabilityai/control-lora/rank128-canny-rank128.safetensors | Model Card | SAI Community |
| tencent/Hunyuan3D-2.1/hunyuan3d-dit-v2-1/model.fp16.ckpt | Model Card | Hunyuan3D License |
| tencent/Hunyuan3D-2/hunyuan3d-dit-v2-0/model.fp16.safetensors | Model Card | Hunyuan3D License |
| TinyLlama 1.1B Chat (OV) | Model Card | Apache 2.0 |
| Whisper (OV) | Model Card | Apache 2.0 |
Be sure to check license terms for any model used in AI Playground especially taking note of any restrictions.
Check the User Guide for details or watch this video on how to add alternative Stable Diffusion models to AI Playground
For information on AI Playground terms, license and disclaimers, visit the project and files on GitHub repo:
License | Notices & Disclaimers
The software may include third party components with separate legal notices or governed by other agreements, as may be described in the Third Party Notices file accompanying the software.
License details for borrowed code and components can be found in our 3rdpartynoticeslicense file.
Additionally, these entities and their work stand out as are fundamental to AI Playground.
TypeScript
70.0%
Vue
20.5%
Python
7.9%