SillyTavern-Horae

Horae (Localized Fork) — “No More Chinese Bullshit” Edition

English Русский

“Why is my AI suddenly writing notes in Chinese?” — Because the original author hardcoded prompts into the source code. We fixed that.

This is a fork of the SillyTavern-Horae extension. We took it, gutted it, and scrubbed away all the hardcoded Chinese strings that were ruining the RP experience for the rest of the world.

What happened here:


Installation

  1. In SillyTavern, go to Extensions (puzzle icon) -> Install Extension.
  2. Paste this URL: https://github.com/kykaaj/SillyTavern-Horae.git
  3. Click Install, refresh the page, and enjoy an English (or Russian) experience.

Developer Note: Localization

If you’re going to contribute or mess with the code — I beg of you, do not hardcode strings. Use the L() function for AI prompts and t() for UI elements. Let’s not bring the Chinese chaos back.

// ✅ CORRECT (auto-selects language)
const msg = L('中文', 'English', '日本語', '한국어', 'Русский');

// ✅ ALSO CORRECT (for UI/toasts)
showToast(t('common.saveSuccess'), 'success');

Original Author: SenriYuki
Fork maintainer: kykaaj