Not-For-All-Audiences
nsfw
File size: 3,316 Bytes
0efc551 f0ef593 0efc551 67ff687 0efc551 f0ef593 0efc551 f0ef593 0efc551 67ff687 0efc551 67ff687 f0ef593 67ff687 0efc551 67ff687 0efc551 67ff687 f0ef593 67ff687 52f19dc 67ff687 f0ef593 67ff687 f0ef593 d70865d f0ef593 67ff687 f0ef593 67ff687 f0ef593 67ff687 f0ef593 67ff687 f0ef593 67ff687 f0ef593 67ff687 f0ef593 67ff687 f0ef593 67ff687 f0ef593 0efc551 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
# Summary for ST Beginners (Work in Progress)
Hello everyone. This is a brief summary of the most frequently asked questions I receive. I will try to provide concise answers and summaries for all topics. I'm not an expert, LLM is just a hobby in my free time. It's only my way to set up things, feel free to skip chapters. I will not turn myself into support on call, if something isn't working - try to Google it yourself or go to ST-discord support channels to ask about it (without mentioning me or this summary). Feel free to correct me if I'm wrong somewhere with proper arguments.
# I'm a Beginner, How Do I Run ST and What Is It?
SillyTavern is a frontend for LLM models. To use it you need to run LLM locally or have access to Web solutions.
## What Can I Run, and How Do I Properly Install and Set Up Any of This?
### What Is All This Running On?
* Python
* Miniconda
* Hopes and dreams
You are not a kid, if you don't know what these are, Google it.
### Where Do We Start?
* We go here [SillyTavern-Launcher](https://github.com/SillyTavern/SillyTavern-Launcher) and follow all the installation steps.
### What Can I Run on My Machine?
If you have:
* NVIDIA newer than 20xx RTX card then it's a no-brainer - use exl2 models.
From the get-go do this- open NVIDIA Control Panel -> Manage 3D Settings -> CUDA - Sysmem Fallback Policy : Prefer No Sysmem Fallback
1. [oobabooga/text-generation-webui](https://github.com/oobabooga/text-generation-webui) oobabooga is the name of the creator of text-generation-webui but everyone calls text-generation-webui as oobabooga
2. [TabbyAPI](https://github.com/theroyallab/tabbyAPI) How to setup [Getting-Started](https://github.com/theroyallab/tabbyAPI/wiki/1.-Getting-Started)
* Other GPU/APU gguf
1. [Koboldcpp](https://github.com/LostRuins/koboldcpp)
2. [Ollama](https://github.com/ollama/ollama)
3. Others
* Web API
### Set up Windows Terminal - PowerShell - oh-my-posh Setup - Conda env - git UI. Do I Need To Do All Of This?
> **You don't.**
* Set up Conda env in PowerShell
```
conda init powershell
```
* oh-my-posh Setup
[Intro and how to setup](https://www.hanselman.com/blog/my-ultimate-powershell-prompt-with-oh-my-posh-and-the-windows-terminal)
After all done open in editor selected theme and add this segment where you want (find "segments": [ ) to have python environment segment.
```
{
"background": "#FFDE57",
"foreground": "#111111",
"powerline_symbol": "\ue0b0",
"properties": {
"home_enabled": true,
"display_mode": "environment",
"fetch_virtual_env": true,
"display_virtual_env": true,
"fetch_version": true
},
"style": "powerline",
"template": " \ue235 {{ .Full }}{{ if .Venv }} {{ .Venv }}{{ end }} ",
"type": "python"
}
```
## How to Properly Install ST?
* SillyTavern-Launcher
## How to Use?
* Cards
- chub.ai
* User Settings
* Extensions
- Where Can I Find More?
## How Does It Work?
## What is a Context Template and Why Should I Care About It?
## Author's Note/LoreBook?
## What Else Can I Use with ST, and How to Install and Set Up All of This?
* SillyTavern-extras
* XTTS
* StableDiffusion
## How to Change ST to Look Like Yours?
* CSS
## What More Can I Do?
* STscript
* mergekit
* exllamav2 |