airunner


Nameairunner JSON
Version 3.3.24 PyPI version JSON
download
home_pagehttps://github.com/Capsize-Games/airunner
SummaryA Stable Diffusion GUI
upload_time2025-03-28 23:04:21
maintainerNone
docs_urlNone
authorCapsize LLC
requires_python<3.11,>=3.10.12
licenseApache-2.0
keywords ai stable diffusion art ai art stablediffusion
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![AI Runner Logo](images/banner.png)](https://github.com/Capsize-Games/airunner)

[![Discord](https://img.shields.io/discord/839511291466219541?color=5865F2&logo=discord&logoColor=white)](https://discord.gg/PUVDDCJ7gz)
[![PyPi](https://github.com/Capsize-Games/airunner/actions/workflows/pypi-dispatch.yml/badge.svg)](https://github.com/Capsize-Games/airunner/actions/workflows/pypi-dispatch.yml)
![GitHub](https://img.shields.io/github/license/Capsize-Games/airunner)
![GitHub last commit](https://img.shields.io/github/last-commit/Capsize-Games/airunner)
![GitHub issues](https://img.shields.io/github/issues/Capsize-Games/airunner)
![GitHub closed issues](https://img.shields.io/github/issues-closed/Capsize-Games/airunner)
![GitHub pull requests](https://img.shields.io/github/issues-pr/Capsize-Games/airunner)
![GitHub closed pull requests](https://img.shields.io/github/issues-pr-closed/Capsize-Games/airunner)

---

# AI Runner 

## Table of Contents
- [Introduction](#introduction)
- [Stable Diffusion](#stable-diffusion)
- [Customizable Chatbots with Moods and Personalities](#customizable-chatbots-with-moods-and-personalities)
- [Features](#-features)
- [System Requirements](#-system-requirements)
- [Installation](#-installation)
- [Running](#running)
- [AI Models](#ai-models)
- [Unit Tests](#unit-tests)
- [Database](#database)

## Introduction

AI Runner is an interface that allows you to run open-source large language models (LLM) and AI image generators (Stable Diffusion) on your own hardware.

It is designed to be easy to use, with a simple and intuitive interface that allows you to use models without the need for a web server or cloud service.

It has been optimized for speed and efficiency, allowing you to generate images and have conversations with chatbots in real-time.

## Stable Diffusion

![images/img.png](images/img.png)

## Drawing tools

![images/drawing_tools.png](images/drawing_tools.png)

## Image filters

![images/image_filter.png](images/image_filter.png)

## Customizable Chatbots with Moods and Personalities

![images/img_1.png](images/img_1.png)

---

## ⭐ Features

AI Runner is an AI interface that allows you to run open-source 
large language models (LLM) and AI image generators (Stable Diffusion) on your own hardware.

| Feature                              | Description                                              |
|--------------------------------------|----------------------------------------------------------|
| 🗣️ **LLMs and communication**       |
| Voice-based chatbot conversations    | Have conversations with a chatbot using your voice       |
| Text-to-speech                       | Convert text to spoken audio                             |
| Speech-to-text                       | Convert spoken audio to text                             |
| Customizable chatbots with LLMs      | Generate text using large language models                |
| RAG on local documents and websites  | Interact with your local documents using an LLM          |
| 🎨 **Image Generation**              |
| Stable Diffusion (all versions)      | Generate images using Stable Diffusion                   |
| Drawing tools                        | Turn sketches into art                                   |
| Text-to-Image                        | Generate images from textual descriptions                |
| Image-to-Image                       | Generate images based on input images                    |
| 🖼️ **Image Manipulation**           |
| Inpaint and Outpaint                 | Modify parts of an image while maintaining context       |
| Controlnet                           | Control image generation with additional input           |
| LoRA                                 | Efficiently fine-tune models with LoRA                   |
| Textual Embeddings                   | Use textual embeddings for image generation control      |
| Image Filters                        | Blur, film grain, pixel art and more                     |
| 🔧 **Utility**                       |
| Run offline, locally                 | Run on your own hardware without internet                |
| Fast generation                      | Generate images in ~2 seconds (RTX 2080s)                |
| Run multiple models at once          | Utilize multiple models simultaneously                   |
| Dark mode                            | Comfortable viewing experience in low-light environments |
| Infinite scrolling canvas            | Seamlessly scroll through generated images               |
| NSFW filter toggle                   | Help control the visibility of NSFW content              |
| NSFW guardrails toggle               | Help prevent generation of LLM harmful content           |
| Fully customizable                   | Easily adjust all parameters                             |
| Fast load time, responsive interface | Enjoy a smooth and responsive user experience            |
| Pure python                          | No reliance on a webserver, pure python implementation   |

---

## 💻 System Requirements

### Minimum System Requirements

- OS: Linux or Windows
- Processor: Intel i5 or equivalent
- Memory: 16 GB RAM
- Graphics: 2080s RTX or higher
- Network: Broadband Internet connection required for setup
- Storage: 130 GB available space

### Recommended System Specs

- OS: Ubuntu 22.04
- Processor: Intel i7 or equivalent
- Memory: 30 GB RAM
- Graphics: 4090 RTX or higher
- Network: Broadband Internet connection required for setup
- Storage: 130 GB available space

---

## 🚀 Installation

### Quickstart

Install for Linux

```bash
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu126
pip install airunner[gui,linux,dev,art,llm,tts]
pip install --upgrade timm==1.0.15
```

[Detailed packaging and installation instructions can be found in the wiki](https://github.com/Capsize-Games/airunner/wiki/Installation-instructions).

### Running

Run the application with the following command

```bash
airunner
```

---

## AI Models

AI Runner installs all of the models required to run a chatbot with text-to-speech and speech-to-text capabilities,
as well as the core models required for Stable Diffusion. However, you must supply your own art generator models.

You can download models from Huggingface.co or civitai.com.

The supported Stable Diffusion models are:

- SD 1.5
- SDXL 1.0
- SDXL Turbo

Models must be placed in their respective directories in the `airunner` directory.
    
```plaintext
~/.local/share/airunner
├── art
│   ├── models
│   │   ├── SD 1.5
│   │   │   ├── lora
│   │   │   └── embeddings
│   │   ├── SDXL 1.0
│   │   │   ├── lora
│   │   │   └── embeddings
│   │   └── SDXL Turbo
│   │       ├── lora
│   │       └── embeddings
```

---

## Unit Tests

Run all unit tests

```bash
python -m unittest discover -s src/airunner/tests
```

Run a single unit test

```bash
python -m unittest src/airunner/tests/<file_name>
```

Example
```bash
python -m unittest src/airunner/tests/test_prompt_weight_convert.py
```

## Database

See the [database wiki page](https://github.com/Capsize-Games/airunner/wiki/Database) for details on how to switch engines, make changes to data models and run migrations.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Capsize-Games/airunner",
    "name": "airunner",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.11,>=3.10.12",
    "maintainer_email": null,
    "keywords": "ai, stable diffusion, art, ai art, stablediffusion",
    "author": "Capsize LLC",
    "author_email": "contact@capsizegames.com",
    "download_url": "https://files.pythonhosted.org/packages/36/43/9c36658cb4c916d90c1deaffbcd9178a5bf86995c193edb9b91111630510/airunner-3.3.24.tar.gz",
    "platform": null,
    "description": "[![AI Runner Logo](images/banner.png)](https://github.com/Capsize-Games/airunner)\n\n[![Discord](https://img.shields.io/discord/839511291466219541?color=5865F2&logo=discord&logoColor=white)](https://discord.gg/PUVDDCJ7gz)\n[![PyPi](https://github.com/Capsize-Games/airunner/actions/workflows/pypi-dispatch.yml/badge.svg)](https://github.com/Capsize-Games/airunner/actions/workflows/pypi-dispatch.yml)\n![GitHub](https://img.shields.io/github/license/Capsize-Games/airunner)\n![GitHub last commit](https://img.shields.io/github/last-commit/Capsize-Games/airunner)\n![GitHub issues](https://img.shields.io/github/issues/Capsize-Games/airunner)\n![GitHub closed issues](https://img.shields.io/github/issues-closed/Capsize-Games/airunner)\n![GitHub pull requests](https://img.shields.io/github/issues-pr/Capsize-Games/airunner)\n![GitHub closed pull requests](https://img.shields.io/github/issues-pr-closed/Capsize-Games/airunner)\n\n---\n\n# AI Runner \n\n## Table of Contents\n- [Introduction](#introduction)\n- [Stable Diffusion](#stable-diffusion)\n- [Customizable Chatbots with Moods and Personalities](#customizable-chatbots-with-moods-and-personalities)\n- [Features](#-features)\n- [System Requirements](#-system-requirements)\n- [Installation](#-installation)\n- [Running](#running)\n- [AI Models](#ai-models)\n- [Unit Tests](#unit-tests)\n- [Database](#database)\n\n## Introduction\n\nAI Runner is an interface that allows you to run open-source large language models (LLM) and AI image generators (Stable Diffusion) on your own hardware.\n\nIt is designed to be easy to use, with a simple and intuitive interface that allows you to use models without the need for a web server or cloud service.\n\nIt has been optimized for speed and efficiency, allowing you to generate images and have conversations with chatbots in real-time.\n\n## Stable Diffusion\n\n![images/img.png](images/img.png)\n\n## Drawing tools\n\n![images/drawing_tools.png](images/drawing_tools.png)\n\n## Image filters\n\n![images/image_filter.png](images/image_filter.png)\n\n## Customizable Chatbots with Moods and Personalities\n\n![images/img_1.png](images/img_1.png)\n\n---\n\n## \u2b50 Features\n\nAI Runner is an AI interface that allows you to run open-source \nlarge language models (LLM) and AI image generators (Stable Diffusion) on your own hardware.\n\n| Feature                              | Description                                              |\n|--------------------------------------|----------------------------------------------------------|\n| \ud83d\udde3\ufe0f **LLMs and communication**       |\n| Voice-based chatbot conversations    | Have conversations with a chatbot using your voice       |\n| Text-to-speech                       | Convert text to spoken audio                             |\n| Speech-to-text                       | Convert spoken audio to text                             |\n| Customizable chatbots with LLMs      | Generate text using large language models                |\n| RAG on local documents and websites  | Interact with your local documents using an LLM          |\n| \ud83c\udfa8 **Image Generation**              |\n| Stable Diffusion (all versions)      | Generate images using Stable Diffusion                   |\n| Drawing tools                        | Turn sketches into art                                   |\n| Text-to-Image                        | Generate images from textual descriptions                |\n| Image-to-Image                       | Generate images based on input images                    |\n| \ud83d\uddbc\ufe0f **Image Manipulation**           |\n| Inpaint and Outpaint                 | Modify parts of an image while maintaining context       |\n| Controlnet                           | Control image generation with additional input           |\n| LoRA                                 | Efficiently fine-tune models with LoRA                   |\n| Textual Embeddings                   | Use textual embeddings for image generation control      |\n| Image Filters                        | Blur, film grain, pixel art and more                     |\n| \ud83d\udd27 **Utility**                       |\n| Run offline, locally                 | Run on your own hardware without internet                |\n| Fast generation                      | Generate images in ~2 seconds (RTX 2080s)                |\n| Run multiple models at once          | Utilize multiple models simultaneously                   |\n| Dark mode                            | Comfortable viewing experience in low-light environments |\n| Infinite scrolling canvas            | Seamlessly scroll through generated images               |\n| NSFW filter toggle                   | Help control the visibility of NSFW content              |\n| NSFW guardrails toggle               | Help prevent generation of LLM harmful content           |\n| Fully customizable                   | Easily adjust all parameters                             |\n| Fast load time, responsive interface | Enjoy a smooth and responsive user experience            |\n| Pure python                          | No reliance on a webserver, pure python implementation   |\n\n---\n\n## \ud83d\udcbb System Requirements\n\n### Minimum System Requirements\n\n- OS: Linux or Windows\n- Processor: Intel i5 or equivalent\n- Memory: 16 GB RAM\n- Graphics: 2080s RTX or higher\n- Network: Broadband Internet connection required for setup\n- Storage: 130 GB available space\n\n### Recommended System Specs\n\n- OS: Ubuntu 22.04\n- Processor: Intel i7 or equivalent\n- Memory: 30 GB RAM\n- Graphics: 4090 RTX or higher\n- Network: Broadband Internet connection required for setup\n- Storage: 130 GB available space\n\n---\n\n## \ud83d\ude80 Installation\n\n### Quickstart\n\nInstall for Linux\n\n```bash\npip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu126\npip install airunner[gui,linux,dev,art,llm,tts]\npip install --upgrade timm==1.0.15\n```\n\n[Detailed packaging and installation instructions can be found in the wiki](https://github.com/Capsize-Games/airunner/wiki/Installation-instructions).\n\n### Running\n\nRun the application with the following command\n\n```bash\nairunner\n```\n\n---\n\n## AI Models\n\nAI Runner installs all of the models required to run a chatbot with text-to-speech and speech-to-text capabilities,\nas well as the core models required for Stable Diffusion. However, you must supply your own art generator models.\n\nYou can download models from Huggingface.co or civitai.com.\n\nThe supported Stable Diffusion models are:\n\n- SD 1.5\n- SDXL 1.0\n- SDXL Turbo\n\nModels must be placed in their respective directories in the `airunner` directory.\n    \n```plaintext\n~/.local/share/airunner\n\u251c\u2500\u2500 art\n\u2502   \u251c\u2500\u2500 models\n\u2502   \u2502   \u251c\u2500\u2500 SD 1.5\n\u2502   \u2502   \u2502   \u251c\u2500\u2500 lora\n\u2502   \u2502   \u2502   \u2514\u2500\u2500 embeddings\n\u2502   \u2502   \u251c\u2500\u2500 SDXL 1.0\n\u2502   \u2502   \u2502   \u251c\u2500\u2500 lora\n\u2502   \u2502   \u2502   \u2514\u2500\u2500 embeddings\n\u2502   \u2502   \u2514\u2500\u2500 SDXL Turbo\n\u2502   \u2502       \u251c\u2500\u2500 lora\n\u2502   \u2502       \u2514\u2500\u2500 embeddings\n```\n\n---\n\n## Unit Tests\n\nRun all unit tests\n\n```bash\npython -m unittest discover -s src/airunner/tests\n```\n\nRun a single unit test\n\n```bash\npython -m unittest src/airunner/tests/<file_name>\n```\n\nExample\n```bash\npython -m unittest src/airunner/tests/test_prompt_weight_convert.py\n```\n\n## Database\n\nSee the [database wiki page](https://github.com/Capsize-Games/airunner/wiki/Database) for details on how to switch engines, make changes to data models and run migrations.\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "A Stable Diffusion GUI",
    "version": "3.3.24",
    "project_urls": {
        "Homepage": "https://github.com/Capsize-Games/airunner"
    },
    "split_keywords": [
        "ai",
        " stable diffusion",
        " art",
        " ai art",
        " stablediffusion"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b46a3a4ff5bdb0a6075d96e1754fc60aab904a4c202766bbbf285dfca05d55ed",
                "md5": "2e0577ef7c2d10740638480967ee5692",
                "sha256": "6dec49265c928b26c1521551e28da54a08f9e52037e699580cab32741a1a6b50"
            },
            "downloads": -1,
            "filename": "airunner-3.3.24-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2e0577ef7c2d10740638480967ee5692",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.11,>=3.10.12",
            "size": 1900785,
            "upload_time": "2025-03-28T23:04:19",
            "upload_time_iso_8601": "2025-03-28T23:04:19.862169Z",
            "url": "https://files.pythonhosted.org/packages/b4/6a/3a4ff5bdb0a6075d96e1754fc60aab904a4c202766bbbf285dfca05d55ed/airunner-3.3.24-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "36439c36658cb4c916d90c1deaffbcd9178a5bf86995c193edb9b91111630510",
                "md5": "533d8b85194cf341637f9c2348cd84d8",
                "sha256": "243dc99f7ca59c2017b943b3ab165d5e213ead9cce242da964b6bb6295e71b1d"
            },
            "downloads": -1,
            "filename": "airunner-3.3.24.tar.gz",
            "has_sig": false,
            "md5_digest": "533d8b85194cf341637f9c2348cd84d8",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.11,>=3.10.12",
            "size": 1615325,
            "upload_time": "2025-03-28T23:04:21",
            "upload_time_iso_8601": "2025-03-28T23:04:21.703965Z",
            "url": "https://files.pythonhosted.org/packages/36/43/9c36658cb4c916d90c1deaffbcd9178a5bf86995c193edb9b91111630510/airunner-3.3.24.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-03-28 23:04:21",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Capsize-Games",
    "github_project": "airunner",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "airunner"
}
        
Elapsed time: 0.86894s