स्क्विसो एक निःशुल्क, शक्तिशाली स्वचालन उपकरण है जो आपको सरल स्क्रिप्ट का उपयोग करके अपनी ट्विच स्ट्रीम को अनुकूलित करने की सुविधा देता है।

पहली बार चैट करने वालों का मज़ेदार AI रिस्पॉन्स के साथ स्वागत कैसे करें

यह स्क्रिप्ट उदाहरण सभी ट्विच चैट संदेशों को सुनता है और यदि संदेश आपके चैनल में उनका पहला संदेश है (एक परिचय संदेश) तो यह एक मजेदार एआई ग्रीटिंग प्रतिक्रिया उत्पन्न करेगा।

वह वीडियो देखें

स्क्रिप्ट उदाहरण

import com.squiso.*; import com.squiso.exception.*; import com.squiso.scripting.*; import com.squiso.scripting.data.*; import com.squiso.keyboard.*; import com.squiso.twitch.*; import com.squiso.datatypes.*; import com.squiso.utils.*; // Important - Please do not change the row below - otherwise you will get a compilation error! public class Script_Example extends SquisoScript { @Override public void onTwitchChatMessage(OnTwitchChatMessageData data, API api) throws SquisoException { // If the message is not their first time (introduction), end here and do nothing if (!data.isMessageFirstTime()) { return; } SquisoString systemMessage = new SquisoString(""); systemMessage.append("You are an AI in Squiso's Twitch chat."); systemMessage.append("A viewer with the username \"" + data.getUserName() + "\" just entered the chat and wrote for the first time."); systemMessage.append("Generate a funny greeting back to the viewer."); systemMessage.append("Follow the Twitch chat guidelines. "); systemMessage.append("Use same language as the chat message. "); // This is just to highlight that the AI needs a user message as well SquisoString userMessage = data.getMessageText(); // Generate an AI response SquisoString aiResponse = api.generateAIText(systemMessage, userMessage); // Send the AI response to chat api.sendTwitchChatMessage(aiResponse); } }