From e0bbdff4efb383d8b4608e99b79deb759f6a3e46 Mon Sep 17 00:00:00 2001
From: Svornost <11434-svornost@users.noreply.gitgud.io>
Date: Tue, 10 Oct 2023 10:12:28 -0400
Subject: [PATCH] Missing file

---
 src/art/genAI/customPromptPart.js | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 src/art/genAI/customPromptPart.js

diff --git a/src/art/genAI/customPromptPart.js b/src/art/genAI/customPromptPart.js
new file mode 100644
index 00000000000..e3c0bbc480f
--- /dev/null
+++ b/src/art/genAI/customPromptPart.js
@@ -0,0 +1,21 @@
+App.Art.GenAI.CustomPromptPart = class CustomPromptPart extends App.Art.GenAI.PromptPart {
+	/**
+	 * @returns {string}
+	 */
+	positive() {
+		if (this.slave.custom.aiPrompts?.positive) {
+			return this.slave.custom.aiPrompts.positive;
+		}
+		return undefined;
+	}
+
+	/**
+	 * @returns {string}
+	 */
+	negative() {
+		if (this.slave.custom.aiPrompts?.negative) {
+			return this.slave.custom.aiPrompts.negative;
+		}
+		return undefined;
+	}
+};
-- 
GitLab