ChatGPT LINEBOT

機器人已廢棄

當時研究串接電文

Github:https://github.com/firekilin/icecubes_openai

1.google app script : line bot 利用 google app script 製作openai chat-3.5 & 產圖程式

2.基本串接openai node.js


1.google app script : line bot 利用 google app script 製作openai chat-3.5 & 產圖程式

需求安裝

DocsServiceApp :108j6x_ZX544wEhGkgddFYM6Ie09edDqXaFwnW3RVFQCLHw_mEueqUHTW

image

2.基本串接openai node.js

npm install

npm start

    //執行chatgpt
    const completion = await openai.createChatCompletion({
      model: "gpt-3.5-turbo",
      "messages": [{"role": "user", "content": "維尼熊 大頭照"}]
    });
    
    //執行openai Dell 畫圖
    const completion2 = await openai.createImage({
      prompt:chattoeng,
      n:1,
      size:"1024x1024"
    });