gpt4 book ai didi

gcloud 部署功能错误代码 3

转载 作者:行者123 更新时间:2023-12-04 16:14:31 25 4
gpt4 key购买 nike

我在做api.ai的基本实现和对话设置教程tutorial为 facebook messenger 制作一个机器人,当我尝试使用以下命令部署该功能时:

gcloud beta functions deploy testBot --stage-bucket testbot-e9bc4.appspot.com --trigger-http

(其中“testBot”是项目名称,“testbot-e9bc4.appspot.com”是bucket_name,我想..)
它返回以下错误消息:
ERROR: (gcloud.beta.functions.deploy) OperationError: code=3, message=Source code size exceeds the limit

我已经搜索过但没有找到任何答案,我不知道错误在哪里。
这是教程中出现的JS文件:
    /
HTTP Cloud Function.

@param {Object} req Cloud Function request context.
@param {Object} res Cloud Function response context.
*/
exports.helloHttp = function helloHttp (req, res) {
response = "This is a sample response from your webhook!" //Default response from the webhook to show it's working


res.setHeader('Content-Type', 'application/json'); //Requires application/json MIME type
res.send(JSON.stringify({ "speech": response, "displayText": response
//"speech" is the spoken version of the response, "displayText" is the visual version
}));
};

最佳答案

在执行 gcloud beta functions deploy testBot --stage-bucket testbot-e9bc4.appspot.com --trigger-http 之前,请确保您位于 go 代码所在的正确目录中命令。

关于gcloud 部署功能错误代码 3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44853355/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com