├── .gitignore ├── Cards └── Add Tavern Cards Here.txt ├── Characters ├── Add_Character_jsons_here.txt ├── ChiharuYamada.json ├── Karen.json ├── Karen.png ├── Rise.json ├── Rise.png └── default.png ├── README.md ├── requirements.txt ├── run.bat ├── run.sh ├── sample.env └── telegrambot.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowRoseCx/KoboldAI-Telegram-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /Cards/Add Tavern Cards Here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Characters/Add_Character_jsons_here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Characters/ChiharuYamada.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowRoseCx/KoboldAI-Telegram-Bot/HEAD/Characters/ChiharuYamada.json -------------------------------------------------------------------------------- /Characters/Karen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowRoseCx/KoboldAI-Telegram-Bot/HEAD/Characters/Karen.json -------------------------------------------------------------------------------- /Characters/Karen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowRoseCx/KoboldAI-Telegram-Bot/HEAD/Characters/Karen.png -------------------------------------------------------------------------------- /Characters/Rise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowRoseCx/KoboldAI-Telegram-Bot/HEAD/Characters/Rise.json -------------------------------------------------------------------------------- /Characters/Rise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowRoseCx/KoboldAI-Telegram-Bot/HEAD/Characters/Rise.png -------------------------------------------------------------------------------- /Characters/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowRoseCx/KoboldAI-Telegram-Bot/HEAD/Characters/default.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowRoseCx/KoboldAI-Telegram-Bot/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowRoseCx/KoboldAI-Telegram-Bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowRoseCx/KoboldAI-Telegram-Bot/HEAD/run.bat -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowRoseCx/KoboldAI-Telegram-Bot/HEAD/run.sh -------------------------------------------------------------------------------- /sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowRoseCx/KoboldAI-Telegram-Bot/HEAD/sample.env -------------------------------------------------------------------------------- /telegrambot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowRoseCx/KoboldAI-Telegram-Bot/HEAD/telegrambot.py --------------------------------------------------------------------------------