- 云开发索引只能创建5个吗?
云开发索引只能创建5个吗?超过5创建后不显示。
2023-11-17 - wx.chooseMedia 是否可以提供文件名?
wx.chooseMedia 是否可以提供文件名。 例如做图片拼接或多图OCR识别,如果没有文件名,不好判断图片是否重复。
2023-11-15 - 有没有稳定的商品条码查询API,求推荐?
有没有稳定的商品条码查询API,求推荐?
2023-11-01 - 小程序云函数如何执行超过59秒的耗时操作?
小程序云函数如何执行超过59秒的耗时操作? 希望调用云函数成功后就返回 ctx.body = { data: "Success" }; 然后继续执行 chatAi()。 现在遇到的问题是返回后chatAi()不执行了。 // 云函数入口函数 exports.main = async (event, context) => { const wxContext = cloud.getWXContext(); const app = new TcbRouter({ event }); app.use(async (ctx, next) => { ctx.data = {}; await next(); }); app.router("UpdateReport", async (ctx, next) => { try { const { access_token } = await queryAccessToken(); const { user_id, reports_id, category_id, output, reports_type, categorys, text: extract, date, } = event.value; const object = { access_token, type: reports_type, output, input: extract || "", }; ctx.body = { data: "Success" }; chatAi( "https://zrmprpsglplhnhyeh.lambda-url.ap-southeast-1.on.aws/", object ); } catch (error) { console.error("Error in UpdateReport:", error); ctx.body = { data: error }; } }); async function chatAi(url, object) { try { await axios.post(url, object); } catch (error) { throw new Error("error" + error); } } return app.serve(); };
2023-10-03 - editor 组件中的内容无法复制粘贴?
editor 组件复制粘贴内容时,光标会失去焦点,键盘收起。无法实现复制粘贴。
2023-09-25 - 关于大模型备案?
用腾讯云或亚马逊云部署微调过的 Llama 2 是否可以申请深度合成服务算法备案
2023-09-09 - 备案,电子公告服务需要什么前置审批?
备案,电子公告服务需要什么前置审批? 前置审批类别中没有电子公告服务所需要点相关内容。
2023-09-06 - 有没有管事的,出来解释一下为什么国内大模型会被禁?
你说禁用国外ChatGPT我理解,难道你们把所有的大模型都定义成ChatGPT了吗,那条法律规定连国内的大模型也被禁用。你们不要利用垄断地位为所欲为,如果禁用国内、国外所有大模型,请拿出相关法律文件。 我们第一版审核,说是用了ChatGPT,我们提出异议并上传了,我们调用“智谱ai”的相关证明,还是被拒。联系客服,和不识字一样,只会复制黏贴一句话“小程序暂不支持开展ChatGPT服务”。是我没说明白,还是你们审核人员不识字。
2023-06-16 - 审核客服,在哪投诉?
你们为什么不能正面回答问题?都是靠复制粘贴吗?太过分了吧。这么大的公司,连个投诉服务都不拥有吗? 有没有人能正面回答一下我的问题。 请问小程序禁用ChatGPT,那是否支持国内的大语言模型,例如:智谱Ai、文心一言? [图片][图片][图片][图片][图片][图片]
2023-06-15 - 小程序限制使用ChatGPT,除了ChatGPT外,其它开源模型可以使用吗?
除了ChatGPT外,其它开源模型如斯坦福的小羊驼,或是其它GitHub上的开源模型,在小程序上可以使用吗?
2023-06-14