Update README.md

This commit is contained in:
matthewcroughan 2023-02-25 22:16:28 +00:00
parent 339a78b0e2
commit 1a436db103

View file

@ -1,22 +1,19 @@
# nixified.ai # nixified.ai
The goal of nixified.ai is to simplify and make available a large repository of The goal of nixified.ai is to simplify and make available a large repository of
AI executable code, that would otherwise be impractical to run yourself, due to AI executable code that would otherwise be impractical to run yourself, due to
package management issues. package management and complexity issues.
The main outputs of the `flake.nix` at the moment are as follows: The main outputs of the `flake.nix` at the moment are as follows:
###### Linux These outputs will run on Windows via [NixOS-WSL](https://github.com/nix-community/NixOS-WSL). It is able to utilize the GPU of the Windows host automatically, as our wrapper script sets `LD_LIBRARY_PATH` to make use of the host drivers.
- `.#invokeai-amd` ##### KoboldAI ( A WebUI for GPT Writing )
- `.#invokeai-nvidia`
###### Windows - `nix run .#koboldai-amd`
- `nix run .#koboldai-nvidia`
These outputs will run on Windows via [NixOS-WSL](https://github.com/nix-community/NixOS-WSL) ##### InvokeAI ( A Stable Diffusion WebUI )
- `.#invokeai-amd-wsl` - `nix run .#invokeai-amd`
- `.#invokeai-nvidia-wsl` - `nix run .#invokeai-nvidia`
They can be ran using `nix run`, such as `nix run .#invokeai-nvidia-wsl` on a
Windows machine via the WSL, or `nix run .#invokeai-nvidia` on a Linux host.