├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report_template.yml │ └── feature_request.md ├── dependabot.yml └── workflows │ └── stale.yml ├── .gitignore ├── LICENSE ├── README.md ├── api-examples ├── api-example-chat-stream.py ├── api-example-chat.py ├── api-example-model.py ├── api-example-stream.py └── api-example.py ├── characters ├── Example.png ├── Example.yaml └── instruction-following │ ├── Alpaca.yaml │ ├── Bactrian.yaml │ ├── Baize.yaml │ ├── Bluemoon.yaml │ ├── ChatGLM.yaml │ ├── Chinese-Vicuna-Chat.yaml │ ├── Galactica Cite.yaml │ ├── Galactica Finetuned.yaml │ ├── Galactica Q.yaml │ ├── Galactica Summary.yaml │ ├── Galactica Work.yaml │ ├── Galactica v2.yaml │ ├── Galactica.yaml │ ├── Gorilla.yaml │ ├── Guanaco non-chat.yaml │ ├── Guanaco-QLoRA.yaml │ ├── Guanaco.yaml │ ├── H2O-human_bot.yaml │ ├── H2O-prompt_answer.yaml │ ├── Hippogriff.yaml │ ├── INCITE-Chat.yaml │ ├── INCITE-Instruct.yaml │ ├── KoAlpaca.yaml │ ├── Koala.yaml │ ├── LLaVA.yaml │ ├── MOSS.yaml │ ├── MPT-Chat.yaml │ ├── Manticore Chat.yaml │ ├── Metharme.yaml │ ├── Minotaur.yaml │ ├── Open Assistant.yaml │ ├── OpenBuddy.yaml │ ├── Orca Mini.yaml │ ├── RWKV-Raven.yaml │ ├── Samantha.yaml │ ├── StableLM.yaml │ ├── StableVicuna.yaml │ ├── Starchat-Beta.yaml │ ├── Tulu.yaml │ ├── Vicuna-v0.yaml │ ├── Vicuna-v1.1.yaml │ ├── Vigogne-Chat.yaml │ ├── Vigogne-Instruct.yaml │ ├── Wizard-Mega ShareGPT.yaml │ ├── Wizard-Mega WizardLM.yaml │ ├── Wizard-Mega.yaml │ ├── WizardLM.yaml │ └── Ziya.yaml ├── convert-to-flexgen.py ├── convert-to-safetensors.py ├── css ├── chat.css ├── chat.js ├── chat_style-TheEncrypted777.css ├── chat_style-cai-chat.css ├── chat_style-messenger.css ├── chat_style-wpp.css ├── html_4chan_style.css ├── html_instruct_style.css ├── html_readable_style.css ├── main.css └── main.js ├── docker ├── .dockerignore ├── .env.example ├── Dockerfile └── docker-compose.yml ├── docs ├── Audio-Notification.md ├── Chat-mode.md ├── DeepSpeed.md ├── Docker.md ├── ExLlama.md ├── Extensions.md ├── FlexGen.md ├── GPTQ-models-(4-bit-mode).md ├── Generation-parameters.md ├── LLaMA-model.md ├── LoRA.md ├── Low-VRAM-guide.md ├── README.md ├── RWKV-model.md ├── Spell-book.md ├── System-requirements.md ├── Training-LoRAs.md ├── WSL-installation-guide.md ├── Windows-installation-guide.md └── llama.cpp-models.md ├── download-model.py ├── extensions ├── api │ ├── blocking_api.py │ ├── requirements.txt │ ├── script.py │ ├── streaming_api.py │ └── util.py ├── character_bias │ └── script.py ├── elevenlabs_tts │ ├── outputs │ │ └── outputs-will-be-saved-here.txt │ ├── requirements.txt │ └── script.py ├── gallery │ └── script.py ├── google_translate │ ├── requirements.txt │ └── script.py ├── llava │ └── script.py ├── multimodal │ ├── DOCS.md │ ├── README.md │ ├── abstract_pipeline.py │ ├── multimodal_embedder.py │ ├── pipeline_loader.py │ ├── pipelines │ │ ├── llava │ │ │ ├── README.md │ │ │ ├── llava.py │ │ │ └── pipelines.py │ │ └── place-additional-pipelines-here.txt │ └── script.py ├── ngrok │ ├── README.md │ ├── requirements.txt │ └── script.py ├── openai │ ├── README.md │ ├── cache_embedding_model.py │ ├── requirements.txt │ └── script.py ├── sd_api_pictures │ ├── README.MD │ ├── script.py │ └── style.css ├── send_pictures │ └── script.py ├── silero_tts │ ├── outputs │ │ └── outputs-will-be-saved-here.txt │ ├── requirements.txt │ ├── script.py │ ├── test_tts.py │ └── tts_preprocessor.py ├── superbooga │ ├── chromadb.py │ ├── download_urls.py │ ├── requirements.txt │ └── script.py └── whisper_stt │ ├── requirements.txt │ └── script.py ├── loras └── place-your-loras-here.txt ├── models ├── config.yaml └── place-your-models-here.txt ├── modules ├── AutoGPTQ_loader.py ├── GPTQ_loader.py ├── LoRA.py ├── RWKV.py ├── block_requests.py ├── callbacks.py ├── chat.py ├── deepspeed_parameters.py ├── evaluate.py ├── exllama.py ├── exllama_hf.py ├── extensions.py ├── github.py ├── html_generator.py ├── llama_attn_hijack.py ├── llamacpp_model.py ├── loaders.py ├── logging_colors.py ├── models.py ├── models_settings.py ├── monkey_patch_gptq_lora.py ├── presets.py ├── relative_imports.py ├── sampler_hijack.py ├── shared.py ├── text_generation.py ├── training.py ├── ui.py └── utils.py ├── presets ├── Asterism.yaml ├── Big O.yaml ├── Contrastive Search.yaml ├── Debug-deterministic.yaml ├── Divine Intellect.yaml ├── Kobold-Godlike.yaml ├── LLaMA-Precise.yaml ├── Midnight Enigma.yaml ├── Mirostat.yaml ├── Shortwave.yaml ├── Space Alien.yaml ├── StarChat.yaml ├── Titanic.yaml ├── Yara.yaml ├── simple-1.yaml └── tfs-with-top-a.yaml ├── prompts ├── Alpaca-with-Input.txt ├── GPT-4chan.txt └── QA.txt ├── requirements.txt ├── server.py ├── settings-template.yaml └── training ├── datasets └── put-trainer-datasets-here.txt └── formats ├── alpaca-chatbot-format.json └── alpaca-format.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: oobabooga 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/.github/ISSUE_TEMPLATE/bug_report_template.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/README.md -------------------------------------------------------------------------------- /api-examples/api-example-chat-stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/api-examples/api-example-chat-stream.py -------------------------------------------------------------------------------- /api-examples/api-example-chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/api-examples/api-example-chat.py -------------------------------------------------------------------------------- /api-examples/api-example-model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/api-examples/api-example-model.py -------------------------------------------------------------------------------- /api-examples/api-example-stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/api-examples/api-example-stream.py -------------------------------------------------------------------------------- /api-examples/api-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/api-examples/api-example.py -------------------------------------------------------------------------------- /characters/Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/Example.png -------------------------------------------------------------------------------- /characters/Example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/Example.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Alpaca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Alpaca.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Bactrian.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Bactrian.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Baize.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Baize.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Bluemoon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Bluemoon.yaml -------------------------------------------------------------------------------- /characters/instruction-following/ChatGLM.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/ChatGLM.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Chinese-Vicuna-Chat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Chinese-Vicuna-Chat.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Galactica Cite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Galactica Cite.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Galactica Finetuned.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Galactica Finetuned.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Galactica Q.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Galactica Q.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Galactica Summary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Galactica Summary.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Galactica Work.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Galactica Work.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Galactica v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Galactica v2.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Galactica.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Galactica.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Gorilla.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Gorilla.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Guanaco non-chat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Guanaco non-chat.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Guanaco-QLoRA.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Guanaco-QLoRA.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Guanaco.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Guanaco.yaml -------------------------------------------------------------------------------- /characters/instruction-following/H2O-human_bot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/H2O-human_bot.yaml -------------------------------------------------------------------------------- /characters/instruction-following/H2O-prompt_answer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/H2O-prompt_answer.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Hippogriff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Hippogriff.yaml -------------------------------------------------------------------------------- /characters/instruction-following/INCITE-Chat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/INCITE-Chat.yaml -------------------------------------------------------------------------------- /characters/instruction-following/INCITE-Instruct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/INCITE-Instruct.yaml -------------------------------------------------------------------------------- /characters/instruction-following/KoAlpaca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/KoAlpaca.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Koala.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Koala.yaml -------------------------------------------------------------------------------- /characters/instruction-following/LLaVA.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/LLaVA.yaml -------------------------------------------------------------------------------- /characters/instruction-following/MOSS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/MOSS.yaml -------------------------------------------------------------------------------- /characters/instruction-following/MPT-Chat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/MPT-Chat.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Manticore Chat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Manticore Chat.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Metharme.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Metharme.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Minotaur.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Minotaur.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Open Assistant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Open Assistant.yaml -------------------------------------------------------------------------------- /characters/instruction-following/OpenBuddy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/OpenBuddy.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Orca Mini.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Orca Mini.yaml -------------------------------------------------------------------------------- /characters/instruction-following/RWKV-Raven.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/RWKV-Raven.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Samantha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Samantha.yaml -------------------------------------------------------------------------------- /characters/instruction-following/StableLM.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/StableLM.yaml -------------------------------------------------------------------------------- /characters/instruction-following/StableVicuna.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/StableVicuna.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Starchat-Beta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Starchat-Beta.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Tulu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Tulu.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Vicuna-v0.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Vicuna-v0.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Vicuna-v1.1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Vicuna-v1.1.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Vigogne-Chat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Vigogne-Chat.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Vigogne-Instruct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Vigogne-Instruct.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Wizard-Mega ShareGPT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Wizard-Mega ShareGPT.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Wizard-Mega WizardLM.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Wizard-Mega WizardLM.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Wizard-Mega.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Wizard-Mega.yaml -------------------------------------------------------------------------------- /characters/instruction-following/WizardLM.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/WizardLM.yaml -------------------------------------------------------------------------------- /characters/instruction-following/Ziya.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/characters/instruction-following/Ziya.yaml -------------------------------------------------------------------------------- /convert-to-flexgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/convert-to-flexgen.py -------------------------------------------------------------------------------- /convert-to-safetensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/convert-to-safetensors.py -------------------------------------------------------------------------------- /css/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/css/chat.css -------------------------------------------------------------------------------- /css/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/css/chat.js -------------------------------------------------------------------------------- /css/chat_style-TheEncrypted777.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/css/chat_style-TheEncrypted777.css -------------------------------------------------------------------------------- /css/chat_style-cai-chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/css/chat_style-cai-chat.css -------------------------------------------------------------------------------- /css/chat_style-messenger.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/css/chat_style-messenger.css -------------------------------------------------------------------------------- /css/chat_style-wpp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/css/chat_style-wpp.css -------------------------------------------------------------------------------- /css/html_4chan_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/css/html_4chan_style.css -------------------------------------------------------------------------------- /css/html_instruct_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/css/html_instruct_style.css -------------------------------------------------------------------------------- /css/html_readable_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/css/html_readable_style.css -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/css/main.css -------------------------------------------------------------------------------- /css/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/css/main.js -------------------------------------------------------------------------------- /docker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docker/.dockerignore -------------------------------------------------------------------------------- /docker/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docker/.env.example -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docs/Audio-Notification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docs/Audio-Notification.md -------------------------------------------------------------------------------- /docs/Chat-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docs/Chat-mode.md -------------------------------------------------------------------------------- /docs/DeepSpeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docs/DeepSpeed.md -------------------------------------------------------------------------------- /docs/Docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docs/Docker.md -------------------------------------------------------------------------------- /docs/ExLlama.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docs/ExLlama.md -------------------------------------------------------------------------------- /docs/Extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docs/Extensions.md -------------------------------------------------------------------------------- /docs/FlexGen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docs/FlexGen.md -------------------------------------------------------------------------------- /docs/GPTQ-models-(4-bit-mode).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docs/GPTQ-models-(4-bit-mode).md -------------------------------------------------------------------------------- /docs/Generation-parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docs/Generation-parameters.md -------------------------------------------------------------------------------- /docs/LLaMA-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docs/LLaMA-model.md -------------------------------------------------------------------------------- /docs/LoRA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docs/LoRA.md -------------------------------------------------------------------------------- /docs/Low-VRAM-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docs/Low-VRAM-guide.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/RWKV-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docs/RWKV-model.md -------------------------------------------------------------------------------- /docs/Spell-book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docs/Spell-book.md -------------------------------------------------------------------------------- /docs/System-requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docs/System-requirements.md -------------------------------------------------------------------------------- /docs/Training-LoRAs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docs/Training-LoRAs.md -------------------------------------------------------------------------------- /docs/WSL-installation-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docs/WSL-installation-guide.md -------------------------------------------------------------------------------- /docs/Windows-installation-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docs/Windows-installation-guide.md -------------------------------------------------------------------------------- /docs/llama.cpp-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/docs/llama.cpp-models.md -------------------------------------------------------------------------------- /download-model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/download-model.py -------------------------------------------------------------------------------- /extensions/api/blocking_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/api/blocking_api.py -------------------------------------------------------------------------------- /extensions/api/requirements.txt: -------------------------------------------------------------------------------- 1 | flask_cloudflared==0.0.12 2 | websockets==11.0.2 -------------------------------------------------------------------------------- /extensions/api/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/api/script.py -------------------------------------------------------------------------------- /extensions/api/streaming_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/api/streaming_api.py -------------------------------------------------------------------------------- /extensions/api/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/api/util.py -------------------------------------------------------------------------------- /extensions/character_bias/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/character_bias/script.py -------------------------------------------------------------------------------- /extensions/elevenlabs_tts/outputs/outputs-will-be-saved-here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/elevenlabs_tts/requirements.txt: -------------------------------------------------------------------------------- 1 | elevenlabs==0.2.* 2 | -------------------------------------------------------------------------------- /extensions/elevenlabs_tts/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/elevenlabs_tts/script.py -------------------------------------------------------------------------------- /extensions/gallery/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/gallery/script.py -------------------------------------------------------------------------------- /extensions/google_translate/requirements.txt: -------------------------------------------------------------------------------- 1 | deep-translator==1.9.2 2 | -------------------------------------------------------------------------------- /extensions/google_translate/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/google_translate/script.py -------------------------------------------------------------------------------- /extensions/llava/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/llava/script.py -------------------------------------------------------------------------------- /extensions/multimodal/DOCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/multimodal/DOCS.md -------------------------------------------------------------------------------- /extensions/multimodal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/multimodal/README.md -------------------------------------------------------------------------------- /extensions/multimodal/abstract_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/multimodal/abstract_pipeline.py -------------------------------------------------------------------------------- /extensions/multimodal/multimodal_embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/multimodal/multimodal_embedder.py -------------------------------------------------------------------------------- /extensions/multimodal/pipeline_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/multimodal/pipeline_loader.py -------------------------------------------------------------------------------- /extensions/multimodal/pipelines/llava/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/multimodal/pipelines/llava/README.md -------------------------------------------------------------------------------- /extensions/multimodal/pipelines/llava/llava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/multimodal/pipelines/llava/llava.py -------------------------------------------------------------------------------- /extensions/multimodal/pipelines/llava/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/multimodal/pipelines/llava/pipelines.py -------------------------------------------------------------------------------- /extensions/multimodal/pipelines/place-additional-pipelines-here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/multimodal/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/multimodal/script.py -------------------------------------------------------------------------------- /extensions/ngrok/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/ngrok/README.md -------------------------------------------------------------------------------- /extensions/ngrok/requirements.txt: -------------------------------------------------------------------------------- 1 | ngrok==0.* 2 | -------------------------------------------------------------------------------- /extensions/ngrok/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/ngrok/script.py -------------------------------------------------------------------------------- /extensions/openai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/openai/README.md -------------------------------------------------------------------------------- /extensions/openai/cache_embedding_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/openai/cache_embedding_model.py -------------------------------------------------------------------------------- /extensions/openai/requirements.txt: -------------------------------------------------------------------------------- 1 | flask_cloudflared==0.0.12 2 | sentence-transformers -------------------------------------------------------------------------------- /extensions/openai/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/openai/script.py -------------------------------------------------------------------------------- /extensions/sd_api_pictures/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/sd_api_pictures/README.MD -------------------------------------------------------------------------------- /extensions/sd_api_pictures/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/sd_api_pictures/script.py -------------------------------------------------------------------------------- /extensions/sd_api_pictures/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/sd_api_pictures/style.css -------------------------------------------------------------------------------- /extensions/send_pictures/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/send_pictures/script.py -------------------------------------------------------------------------------- /extensions/silero_tts/outputs/outputs-will-be-saved-here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extensions/silero_tts/requirements.txt: -------------------------------------------------------------------------------- 1 | ipython 2 | num2words 3 | omegaconf 4 | pydub 5 | PyYAML 6 | -------------------------------------------------------------------------------- /extensions/silero_tts/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/silero_tts/script.py -------------------------------------------------------------------------------- /extensions/silero_tts/test_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/silero_tts/test_tts.py -------------------------------------------------------------------------------- /extensions/silero_tts/tts_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/silero_tts/tts_preprocessor.py -------------------------------------------------------------------------------- /extensions/superbooga/chromadb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/superbooga/chromadb.py -------------------------------------------------------------------------------- /extensions/superbooga/download_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/superbooga/download_urls.py -------------------------------------------------------------------------------- /extensions/superbooga/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/superbooga/requirements.txt -------------------------------------------------------------------------------- /extensions/superbooga/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/superbooga/script.py -------------------------------------------------------------------------------- /extensions/whisper_stt/requirements.txt: -------------------------------------------------------------------------------- 1 | SpeechRecognition==3.10.0 2 | openai-whisper 3 | soundfile 4 | ffmpeg 5 | -------------------------------------------------------------------------------- /extensions/whisper_stt/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/extensions/whisper_stt/script.py -------------------------------------------------------------------------------- /loras/place-your-loras-here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/models/config.yaml -------------------------------------------------------------------------------- /models/place-your-models-here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/AutoGPTQ_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/AutoGPTQ_loader.py -------------------------------------------------------------------------------- /modules/GPTQ_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/GPTQ_loader.py -------------------------------------------------------------------------------- /modules/LoRA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/LoRA.py -------------------------------------------------------------------------------- /modules/RWKV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/RWKV.py -------------------------------------------------------------------------------- /modules/block_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/block_requests.py -------------------------------------------------------------------------------- /modules/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/callbacks.py -------------------------------------------------------------------------------- /modules/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/chat.py -------------------------------------------------------------------------------- /modules/deepspeed_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/deepspeed_parameters.py -------------------------------------------------------------------------------- /modules/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/evaluate.py -------------------------------------------------------------------------------- /modules/exllama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/exllama.py -------------------------------------------------------------------------------- /modules/exllama_hf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/exllama_hf.py -------------------------------------------------------------------------------- /modules/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/extensions.py -------------------------------------------------------------------------------- /modules/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/github.py -------------------------------------------------------------------------------- /modules/html_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/html_generator.py -------------------------------------------------------------------------------- /modules/llama_attn_hijack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/llama_attn_hijack.py -------------------------------------------------------------------------------- /modules/llamacpp_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/llamacpp_model.py -------------------------------------------------------------------------------- /modules/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/loaders.py -------------------------------------------------------------------------------- /modules/logging_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/logging_colors.py -------------------------------------------------------------------------------- /modules/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/models.py -------------------------------------------------------------------------------- /modules/models_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/models_settings.py -------------------------------------------------------------------------------- /modules/monkey_patch_gptq_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/monkey_patch_gptq_lora.py -------------------------------------------------------------------------------- /modules/presets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/presets.py -------------------------------------------------------------------------------- /modules/relative_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/relative_imports.py -------------------------------------------------------------------------------- /modules/sampler_hijack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/sampler_hijack.py -------------------------------------------------------------------------------- /modules/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/shared.py -------------------------------------------------------------------------------- /modules/text_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/text_generation.py -------------------------------------------------------------------------------- /modules/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/training.py -------------------------------------------------------------------------------- /modules/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/ui.py -------------------------------------------------------------------------------- /modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/modules/utils.py -------------------------------------------------------------------------------- /presets/Asterism.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/presets/Asterism.yaml -------------------------------------------------------------------------------- /presets/Big O.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/presets/Big O.yaml -------------------------------------------------------------------------------- /presets/Contrastive Search.yaml: -------------------------------------------------------------------------------- 1 | do_sample: false 2 | top_k: 4 3 | penalty_alpha: 0.3 4 | -------------------------------------------------------------------------------- /presets/Debug-deterministic.yaml: -------------------------------------------------------------------------------- 1 | do_sample: false 2 | -------------------------------------------------------------------------------- /presets/Divine Intellect.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/presets/Divine Intellect.yaml -------------------------------------------------------------------------------- /presets/Kobold-Godlike.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/presets/Kobold-Godlike.yaml -------------------------------------------------------------------------------- /presets/LLaMA-Precise.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/presets/LLaMA-Precise.yaml -------------------------------------------------------------------------------- /presets/Midnight Enigma.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/presets/Midnight Enigma.yaml -------------------------------------------------------------------------------- /presets/Mirostat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/presets/Mirostat.yaml -------------------------------------------------------------------------------- /presets/Shortwave.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/presets/Shortwave.yaml -------------------------------------------------------------------------------- /presets/Space Alien.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/presets/Space Alien.yaml -------------------------------------------------------------------------------- /presets/StarChat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/presets/StarChat.yaml -------------------------------------------------------------------------------- /presets/Titanic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/presets/Titanic.yaml -------------------------------------------------------------------------------- /presets/Yara.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/presets/Yara.yaml -------------------------------------------------------------------------------- /presets/simple-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/presets/simple-1.yaml -------------------------------------------------------------------------------- /presets/tfs-with-top-a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/presets/tfs-with-top-a.yaml -------------------------------------------------------------------------------- /prompts/Alpaca-with-Input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/prompts/Alpaca-with-Input.txt -------------------------------------------------------------------------------- /prompts/GPT-4chan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/prompts/GPT-4chan.txt -------------------------------------------------------------------------------- /prompts/QA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/prompts/QA.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/server.py -------------------------------------------------------------------------------- /settings-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/settings-template.yaml -------------------------------------------------------------------------------- /training/datasets/put-trainer-datasets-here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /training/formats/alpaca-chatbot-format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/training/formats/alpaca-chatbot-format.json -------------------------------------------------------------------------------- /training/formats/alpaca-format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bettyyy2/text-generation-webui/HEAD/training/formats/alpaca-format.json --------------------------------------------------------------------------------