ChatGTP realizes Auto.js script automation, I was surprised

foreword

I am bored recently, try to play the recently popular CharGTP , and it has been successfully installed, it is currently free, try to implement Auto.js 4.0 to realize the automatic brushing video script, after that, good guy, it is equal to my previous script It was written in vain, haha, let's take a look.

overview

ChatGPT is a chat robot program released in the United States on November 30, 2022. It is a natural language processing tool driven by artificial intelligence technology.

It can conduct conversations by learning and understanding human language, and can also interact according to the context of the chat. It can truly chat and communicate like a human being, and can even complete tasks such as writing emails, video scripts, copywriting, translation, and code.

Install

  1. Open Microsoft Edge Search WeTab
    insert image description here
  2. Choose Edge
    insert image description here
  3. This plug-in will appear later, select Get , and it will be downloaded after getting it
    insert image description here
  4. Open the extension startup plugin
    insert image description here
  5. Then it's done, just open the homepage
    insert image description here

Test Generate Auto.js Script

insert image description here
insert image description here

// 快手极速版自动刷屏代码示例
launch('com.kuaishou.nebula');

while (true) {
    
    
  swipe(device.width / 2, device.height * 0.8, device.width / 2, device.height * 0.2, 1000);
  sleep(5000 + parseInt(Math.random() * 1000));
}

Guess you like

Origin blog.csdn.net/qq_44697754/article/details/130723792