├── .github └── workflows │ └── retype-action.yml ├── .gitignore ├── LICENSE ├── README.md ├── retype.yml └── src ├── Cloud Installation ├── _KoboldAI.md ├── _kobold.md ├── _tavern.md ├── colab.md ├── horde.md ├── index.yml └── vast.md ├── FAQ.md ├── Local Installation (CPU) ├── index.yml ├── overview.md └── pygcpp.md ├── Local Installation (GPU) ├── KoboldAI4bit.md ├── _tavern.md ├── gpu.md ├── index.yml ├── kobold.md ├── oobabooga.md └── overview.md ├── Pygmalion Extras ├── Agnaistic.md ├── LoRA.md ├── SillyTavern.md ├── Soft Prompt.md ├── index.yml ├── index.yml.bak └── tavern.md ├── Tools ├── git.md ├── index.yml └── index.yml.bak ├── _technical-stuff ├── index.yml ├── notation.md └── overview.md ├── index.md ├── pygmalion-7b.md ├── quickstart.md ├── settingsandparams.md └── static ├── 1500x500.jpeg ├── 4Bit-Load.png ├── Agnaistic.png ├── AgnaisticAdapters.png ├── AgnaisticGC1.png ├── AgnaisticGC2.png ├── AgnaisticGC3.png ├── AgnaisticGC4.png ├── AgnaisticSidebar.png ├── ColabModel.png ├── ColabRunCell.png ├── GUI-Clone.png ├── GUI-File.png ├── KoboldAI-4bit-1.png ├── KoboldAI-4bit-10.png ├── KoboldAI-4bit-11.png ├── KoboldAI-4bit-12.png ├── KoboldAI-4bit-2.png ├── KoboldAI-4bit-3.png ├── KoboldAI-4bit-4.png ├── KoboldAI-4bit-5.png ├── KoboldAI-4bit-6.png ├── KoboldAI-4bit-7.png ├── KoboldAI-4bit-8.png ├── KoboldAI-4bit-9.png ├── KoboldAI-newui.PNG ├── NodeJSWindows.png ├── OpenPSWindows.png ├── OpenPSWindowsAdmin.png ├── PSExecutionPolicy.png ├── PygmaHeader1.png ├── SP-Kobold-1.png ├── SP-Kobold-2.png ├── SP-Kobold-3.png ├── SP-Kobold-4.png ├── SP-Kobold-5.png ├── STConnect.png ├── STcmd.png ├── SillyTavern.png ├── StartBat.png ├── TavernAI.PNG ├── cloud1.png ├── cloud2.png ├── gpt4chan.png ├── horde-agnai.png ├── horde-kobold1.png ├── horde-kobold2.png ├── horde-rating.png ├── horde-tavern.png ├── icons ├── Pygmalion_Fixed.svg ├── amd.svg ├── discord-logo.svg ├── github-mark.svg ├── hf-logo.svg ├── nvidia.svg ├── pyg-logo.svg └── pyggy.svg ├── image.png ├── kobold-cloud.PNG ├── kobold-cloud2.PNG ├── kobold-local-3.png ├── kobold-local.png ├── kobold-local1.png ├── kobold-local2.png ├── lora.png ├── lora1.png ├── microsoft.png ├── node.png ├── ooba-cloud.PNG ├── ooba-cloud1.PNG ├── ooba-cloud2.PNG ├── ooba-cloud3.PNG ├── ooba-cloud4.PNG ├── ooba-cloud5.PNG ├── oobactx.png ├── quick1.JPG ├── quick2.JPG ├── quick3.png ├── quick4.png ├── quickstart.png ├── quickstart1.jpg ├── quickstart1.png ├── quickstart2.jpg ├── st-adv.png ├── st-api.png ├── st-bg.png ├── st-char.png ├── st-ex.png ├── st-presets.png ├── st-user.png ├── st-ws.png ├── st.png ├── st1.jpg ├── st2.jpg ├── st3.jpg ├── st4.png ├── sttt.png ├── stttt.png ├── tavern-cloud.PNG ├── tavern-cloud2.PNG ├── tavern-cloud3.PNG ├── tavern-local1.png ├── tavern-local2.png ├── tavern1.png ├── tavern2.png ├── tavern3.png ├── tavern4.png ├── tavernctx.png ├── vast1.png ├── vast2.png ├── vast3.png ├── vast4.png ├── vast5.png └── vast6.png /.github/workflows/retype-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/.github/workflows/retype-action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .retype -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/README.md -------------------------------------------------------------------------------- /retype.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/retype.yml -------------------------------------------------------------------------------- /src/Cloud Installation/_KoboldAI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/Cloud Installation/_KoboldAI.md -------------------------------------------------------------------------------- /src/Cloud Installation/_kobold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/Cloud Installation/_kobold.md -------------------------------------------------------------------------------- /src/Cloud Installation/_tavern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/Cloud Installation/_tavern.md -------------------------------------------------------------------------------- /src/Cloud Installation/colab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/Cloud Installation/colab.md -------------------------------------------------------------------------------- /src/Cloud Installation/horde.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/Cloud Installation/horde.md -------------------------------------------------------------------------------- /src/Cloud Installation/index.yml: -------------------------------------------------------------------------------- 1 | order: 100 2 | icon: cloud 3 | expanded: true -------------------------------------------------------------------------------- /src/Cloud Installation/vast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/Cloud Installation/vast.md -------------------------------------------------------------------------------- /src/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/FAQ.md -------------------------------------------------------------------------------- /src/Local Installation (CPU)/index.yml: -------------------------------------------------------------------------------- 1 | order: 100 2 | icon: cpu 3 | expanded: true -------------------------------------------------------------------------------- /src/Local Installation (CPU)/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/Local Installation (CPU)/overview.md -------------------------------------------------------------------------------- /src/Local Installation (CPU)/pygcpp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/Local Installation (CPU)/pygcpp.md -------------------------------------------------------------------------------- /src/Local Installation (GPU)/KoboldAI4bit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/Local Installation (GPU)/KoboldAI4bit.md -------------------------------------------------------------------------------- /src/Local Installation (GPU)/_tavern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/Local Installation (GPU)/_tavern.md -------------------------------------------------------------------------------- /src/Local Installation (GPU)/gpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/Local Installation (GPU)/gpu.md -------------------------------------------------------------------------------- /src/Local Installation (GPU)/index.yml: -------------------------------------------------------------------------------- 1 | order: 100 2 | icon: device-desktop 3 | expanded: true -------------------------------------------------------------------------------- /src/Local Installation (GPU)/kobold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/Local Installation (GPU)/kobold.md -------------------------------------------------------------------------------- /src/Local Installation (GPU)/oobabooga.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/Local Installation (GPU)/oobabooga.md -------------------------------------------------------------------------------- /src/Local Installation (GPU)/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/Local Installation (GPU)/overview.md -------------------------------------------------------------------------------- /src/Pygmalion Extras/Agnaistic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/Pygmalion Extras/Agnaistic.md -------------------------------------------------------------------------------- /src/Pygmalion Extras/LoRA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/Pygmalion Extras/LoRA.md -------------------------------------------------------------------------------- /src/Pygmalion Extras/SillyTavern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/Pygmalion Extras/SillyTavern.md -------------------------------------------------------------------------------- /src/Pygmalion Extras/Soft Prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/Pygmalion Extras/Soft Prompt.md -------------------------------------------------------------------------------- /src/Pygmalion Extras/index.yml: -------------------------------------------------------------------------------- 1 | order: 10 2 | icon: plus 3 | expanded: true -------------------------------------------------------------------------------- /src/Pygmalion Extras/index.yml.bak: -------------------------------------------------------------------------------- 1 | order: 100 2 | icon: :paperclip: 3 | expanded: true -------------------------------------------------------------------------------- /src/Pygmalion Extras/tavern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/Pygmalion Extras/tavern.md -------------------------------------------------------------------------------- /src/Tools/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/Tools/git.md -------------------------------------------------------------------------------- /src/Tools/index.yml: -------------------------------------------------------------------------------- 1 | order: 10 2 | icon: tools 3 | expanded: true -------------------------------------------------------------------------------- /src/Tools/index.yml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/Tools/index.yml.bak -------------------------------------------------------------------------------- /src/_technical-stuff/index.yml: -------------------------------------------------------------------------------- 1 | order: 1 2 | icon: stack 3 | label: Machine Learning 4 | expanded: false -------------------------------------------------------------------------------- /src/_technical-stuff/notation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/_technical-stuff/notation.md -------------------------------------------------------------------------------- /src/_technical-stuff/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/_technical-stuff/overview.md -------------------------------------------------------------------------------- /src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/index.md -------------------------------------------------------------------------------- /src/pygmalion-7b.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/pygmalion-7b.md -------------------------------------------------------------------------------- /src/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/quickstart.md -------------------------------------------------------------------------------- /src/settingsandparams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/settingsandparams.md -------------------------------------------------------------------------------- /src/static/1500x500.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/1500x500.jpeg -------------------------------------------------------------------------------- /src/static/4Bit-Load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/4Bit-Load.png -------------------------------------------------------------------------------- /src/static/Agnaistic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/Agnaistic.png -------------------------------------------------------------------------------- /src/static/AgnaisticAdapters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/AgnaisticAdapters.png -------------------------------------------------------------------------------- /src/static/AgnaisticGC1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/AgnaisticGC1.png -------------------------------------------------------------------------------- /src/static/AgnaisticGC2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/AgnaisticGC2.png -------------------------------------------------------------------------------- /src/static/AgnaisticGC3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/AgnaisticGC3.png -------------------------------------------------------------------------------- /src/static/AgnaisticGC4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/AgnaisticGC4.png -------------------------------------------------------------------------------- /src/static/AgnaisticSidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/AgnaisticSidebar.png -------------------------------------------------------------------------------- /src/static/ColabModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/ColabModel.png -------------------------------------------------------------------------------- /src/static/ColabRunCell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/ColabRunCell.png -------------------------------------------------------------------------------- /src/static/GUI-Clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/GUI-Clone.png -------------------------------------------------------------------------------- /src/static/GUI-File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/GUI-File.png -------------------------------------------------------------------------------- /src/static/KoboldAI-4bit-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/KoboldAI-4bit-1.png -------------------------------------------------------------------------------- /src/static/KoboldAI-4bit-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/KoboldAI-4bit-10.png -------------------------------------------------------------------------------- /src/static/KoboldAI-4bit-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/KoboldAI-4bit-11.png -------------------------------------------------------------------------------- /src/static/KoboldAI-4bit-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/KoboldAI-4bit-12.png -------------------------------------------------------------------------------- /src/static/KoboldAI-4bit-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/KoboldAI-4bit-2.png -------------------------------------------------------------------------------- /src/static/KoboldAI-4bit-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/KoboldAI-4bit-3.png -------------------------------------------------------------------------------- /src/static/KoboldAI-4bit-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/KoboldAI-4bit-4.png -------------------------------------------------------------------------------- /src/static/KoboldAI-4bit-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/KoboldAI-4bit-5.png -------------------------------------------------------------------------------- /src/static/KoboldAI-4bit-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/KoboldAI-4bit-6.png -------------------------------------------------------------------------------- /src/static/KoboldAI-4bit-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/KoboldAI-4bit-7.png -------------------------------------------------------------------------------- /src/static/KoboldAI-4bit-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/KoboldAI-4bit-8.png -------------------------------------------------------------------------------- /src/static/KoboldAI-4bit-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/KoboldAI-4bit-9.png -------------------------------------------------------------------------------- /src/static/KoboldAI-newui.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/KoboldAI-newui.PNG -------------------------------------------------------------------------------- /src/static/NodeJSWindows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/NodeJSWindows.png -------------------------------------------------------------------------------- /src/static/OpenPSWindows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/OpenPSWindows.png -------------------------------------------------------------------------------- /src/static/OpenPSWindowsAdmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/OpenPSWindowsAdmin.png -------------------------------------------------------------------------------- /src/static/PSExecutionPolicy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/PSExecutionPolicy.png -------------------------------------------------------------------------------- /src/static/PygmaHeader1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/PygmaHeader1.png -------------------------------------------------------------------------------- /src/static/SP-Kobold-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/SP-Kobold-1.png -------------------------------------------------------------------------------- /src/static/SP-Kobold-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/SP-Kobold-2.png -------------------------------------------------------------------------------- /src/static/SP-Kobold-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/SP-Kobold-3.png -------------------------------------------------------------------------------- /src/static/SP-Kobold-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/SP-Kobold-4.png -------------------------------------------------------------------------------- /src/static/SP-Kobold-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/SP-Kobold-5.png -------------------------------------------------------------------------------- /src/static/STConnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/STConnect.png -------------------------------------------------------------------------------- /src/static/STcmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/STcmd.png -------------------------------------------------------------------------------- /src/static/SillyTavern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/SillyTavern.png -------------------------------------------------------------------------------- /src/static/StartBat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/StartBat.png -------------------------------------------------------------------------------- /src/static/TavernAI.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/TavernAI.PNG -------------------------------------------------------------------------------- /src/static/cloud1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/cloud1.png -------------------------------------------------------------------------------- /src/static/cloud2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/cloud2.png -------------------------------------------------------------------------------- /src/static/gpt4chan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/gpt4chan.png -------------------------------------------------------------------------------- /src/static/horde-agnai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/horde-agnai.png -------------------------------------------------------------------------------- /src/static/horde-kobold1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/horde-kobold1.png -------------------------------------------------------------------------------- /src/static/horde-kobold2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/horde-kobold2.png -------------------------------------------------------------------------------- /src/static/horde-rating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/horde-rating.png -------------------------------------------------------------------------------- /src/static/horde-tavern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/horde-tavern.png -------------------------------------------------------------------------------- /src/static/icons/Pygmalion_Fixed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/icons/Pygmalion_Fixed.svg -------------------------------------------------------------------------------- /src/static/icons/amd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/icons/amd.svg -------------------------------------------------------------------------------- /src/static/icons/discord-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/icons/discord-logo.svg -------------------------------------------------------------------------------- /src/static/icons/github-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/icons/github-mark.svg -------------------------------------------------------------------------------- /src/static/icons/hf-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/icons/hf-logo.svg -------------------------------------------------------------------------------- /src/static/icons/nvidia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/icons/nvidia.svg -------------------------------------------------------------------------------- /src/static/icons/pyg-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/icons/pyg-logo.svg -------------------------------------------------------------------------------- /src/static/icons/pyggy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/icons/pyggy.svg -------------------------------------------------------------------------------- /src/static/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/image.png -------------------------------------------------------------------------------- /src/static/kobold-cloud.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/kobold-cloud.PNG -------------------------------------------------------------------------------- /src/static/kobold-cloud2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/kobold-cloud2.PNG -------------------------------------------------------------------------------- /src/static/kobold-local-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/kobold-local-3.png -------------------------------------------------------------------------------- /src/static/kobold-local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/kobold-local.png -------------------------------------------------------------------------------- /src/static/kobold-local1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/kobold-local1.png -------------------------------------------------------------------------------- /src/static/kobold-local2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/kobold-local2.png -------------------------------------------------------------------------------- /src/static/lora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/lora.png -------------------------------------------------------------------------------- /src/static/lora1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/lora1.png -------------------------------------------------------------------------------- /src/static/microsoft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/microsoft.png -------------------------------------------------------------------------------- /src/static/node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/node.png -------------------------------------------------------------------------------- /src/static/ooba-cloud.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/ooba-cloud.PNG -------------------------------------------------------------------------------- /src/static/ooba-cloud1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/ooba-cloud1.PNG -------------------------------------------------------------------------------- /src/static/ooba-cloud2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/ooba-cloud2.PNG -------------------------------------------------------------------------------- /src/static/ooba-cloud3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/ooba-cloud3.PNG -------------------------------------------------------------------------------- /src/static/ooba-cloud4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/ooba-cloud4.PNG -------------------------------------------------------------------------------- /src/static/ooba-cloud5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/ooba-cloud5.PNG -------------------------------------------------------------------------------- /src/static/oobactx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/oobactx.png -------------------------------------------------------------------------------- /src/static/quick1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/quick1.JPG -------------------------------------------------------------------------------- /src/static/quick2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/quick2.JPG -------------------------------------------------------------------------------- /src/static/quick3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/quick3.png -------------------------------------------------------------------------------- /src/static/quick4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/quick4.png -------------------------------------------------------------------------------- /src/static/quickstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/quickstart.png -------------------------------------------------------------------------------- /src/static/quickstart1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/quickstart1.jpg -------------------------------------------------------------------------------- /src/static/quickstart1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/quickstart1.png -------------------------------------------------------------------------------- /src/static/quickstart2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/quickstart2.jpg -------------------------------------------------------------------------------- /src/static/st-adv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/st-adv.png -------------------------------------------------------------------------------- /src/static/st-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/st-api.png -------------------------------------------------------------------------------- /src/static/st-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/st-bg.png -------------------------------------------------------------------------------- /src/static/st-char.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/st-char.png -------------------------------------------------------------------------------- /src/static/st-ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/st-ex.png -------------------------------------------------------------------------------- /src/static/st-presets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/st-presets.png -------------------------------------------------------------------------------- /src/static/st-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/st-user.png -------------------------------------------------------------------------------- /src/static/st-ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/st-ws.png -------------------------------------------------------------------------------- /src/static/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/st.png -------------------------------------------------------------------------------- /src/static/st1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/st1.jpg -------------------------------------------------------------------------------- /src/static/st2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/st2.jpg -------------------------------------------------------------------------------- /src/static/st3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/st3.jpg -------------------------------------------------------------------------------- /src/static/st4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/st4.png -------------------------------------------------------------------------------- /src/static/sttt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/sttt.png -------------------------------------------------------------------------------- /src/static/stttt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/stttt.png -------------------------------------------------------------------------------- /src/static/tavern-cloud.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/tavern-cloud.PNG -------------------------------------------------------------------------------- /src/static/tavern-cloud2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/tavern-cloud2.PNG -------------------------------------------------------------------------------- /src/static/tavern-cloud3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/tavern-cloud3.PNG -------------------------------------------------------------------------------- /src/static/tavern-local1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/tavern-local1.png -------------------------------------------------------------------------------- /src/static/tavern-local2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/tavern-local2.png -------------------------------------------------------------------------------- /src/static/tavern1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/tavern1.png -------------------------------------------------------------------------------- /src/static/tavern2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/tavern2.png -------------------------------------------------------------------------------- /src/static/tavern3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/tavern3.png -------------------------------------------------------------------------------- /src/static/tavern4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/tavern4.png -------------------------------------------------------------------------------- /src/static/tavernctx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/tavernctx.png -------------------------------------------------------------------------------- /src/static/vast1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/vast1.png -------------------------------------------------------------------------------- /src/static/vast2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/vast2.png -------------------------------------------------------------------------------- /src/static/vast3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/vast3.png -------------------------------------------------------------------------------- /src/static/vast4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/vast4.png -------------------------------------------------------------------------------- /src/static/vast5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/vast5.png -------------------------------------------------------------------------------- /src/static/vast6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PygmalionAI/pygmalion-docs/HEAD/src/static/vast6.png --------------------------------------------------------------------------------