Completions API (ChatGPT API) ▪ これまでの会話の内容をコンテキストと して入力 ◦ Workers単体で永続化の仕組みはない • LINEからのWebhook送信に対して1秒以内の応答 → Cloudflare Queues ◦ Webhook受信に関するLINEの仕様 ▪ https://developers.line.biz/ja/docs/messaging-api/receiving-messages/#check-error-reason ◦ メッセージ投稿は別の API ▪ https://developers.line.biz/ja/docs/messaging-api/sending-messages/#reply-messages ◦ ChatGPT APIのレスポンスは1秒を超える curl https://api.openai.com/v1/chat/completions \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $OPENAI_API_KEY" \ -d '{ "model": "gpt-3.5-turbo", "messages": [ {"role": "system", "content": "You are a helpful assistant."}, {"role": "user", "content": "Hello!"} ] }' https://platform.openai.com/docs/api-reference/chat/create