diff --git a/src/gui/options/options.js b/src/gui/options/options.js
index 3b79aa9402f46278789be9c44aba1cfd8668e7aa..bfbbcbcc4884b61ef223ead00574931013cc2f75 100644
--- a/src/gui/options/options.js
+++ b/src/gui/options/options.js
@@ -771,6 +771,15 @@ App.UI.optionsPassage = function() {
 			.addValue("Enabled", 1).on().addValue("Disabled", 0).off()
 			.addComment("This will enable an option to export slaves as a Slave Bot, compatible with SillyTavern for LLM-backed roleplay. Available in the Records tab.");
 
+		options.addOption("Experimental AI chat tab in slave interact is ", "aiChat")
+			.addValue("Enabled", 1).on().addValue("Disabled", 0).off()
+			.addComment("This will enable a chat tab in slave interact. It uses an LLM OpenAPI endpoint of your choice. (DONT USE OPENAI, use Oobabooga, KoboldCPP, etc)");
+
+		if (V.aiChat === 1){
+			options.addOption("API URL", "aiChatUrl").showTextBox().addComment("The URL of the OpenAI-compatible, self-hosted endpoint.");
+			options.addOption("AI Chat Temp", "aiChatTemp").showTextBox().addComment("The temperature (creativity) of the AI chat. Lower is more predictable (start with 0.5 and work your way up).");
+			options.addOption("AI Chat Min_p", "aiChatMinP").showTextBox().addComment("Minimum probability. Keeps really unlikely words from appearing. Start with 0.05 and go down to be more creative, up to eliminate gibberish.");
+		}
 		options.addOption("Allow a sufficiently large enough clitoris to evaluate true in canPenetrate()", "clitoralPenetration", V.experimental)
 			.addValue("Enabled", 1).on().addValue("Disabled", 0).off()
 			.addComment("canPenetrate() was originally built to assume dicks, so not all scenes may make sense without one. May also lead to awkward pregnancies.");