装好插件后,做一些简单测试,很强
简单的字符串算法和数据结构都能搞出来。
再试一下一个特定的任务:用户上传zip包,然后拆分成多个文件,然后上传到s3,然后返回s3的url
//用户上传zip包,然后拆分成多个文件,然后上传到s3,然后返回s3的url
public String uploadFile(FileUploadRequest request) throws Exception {
//check if request file is zip
//判断是否是 zip 格式
if (!request.getFile().startsWith("data:image/png;base64,")) {
throw new BizException(PARAM_ERROR);
}
//parse zip file to multi files , and save them to s3
String fileName = Instant.now().getEpochSecond() + request.getModelNo() + ".zip";
if (!StringUtils.hasLength(request.getFile())) {
throw new BizException(PARAM_ERROR);
}
String fileName = Instant.now().getEpochSecond() + request.getModelNo() + ".png";
return this.uploadObject(getFilePath("modelIcon",fileName),request.getFile(),fileName);
}
基本就写的什么都不是了,提示也没有用。
而使用chatGPT呢?
目前来看,chatGPT更胜一筹。
结论
通义灵码写基本的编程题没问题,具体编程需求还有待提高!