Squiso เป็นเครื่องมืออัตโนมัติที่มีประสิทธิภาพและฟรีที่ให้คุณปรับแต่งสตรีม Twitch ของคุณด้วยสคริปต์ง่ายๆ

วิธีทักทายผู้สนทนาครั้งแรกด้วยคำตอบ AI ที่ตลกขบขัน

ตัวอย่างสคริปต์นี้จะรับฟังข้อความแชททั้งหมดของ Twitch และหากข้อความนั้นเป็นข้อความแรกในช่องของคุณ (ข้อความแนะนำ) ระบบจะสร้างการตอบกลับคำทักทายแบบตลกๆ จาก 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); } }