wwsheng009

Results 5 issues of wwsheng009

https://github.com/sashabaranov/go-gpt3/blob/575c4e4adbf3e12dea780c735fa9c19062440e11/chat_stream.go#L40 In the recv method is that it does not check the response status code, and it returns an empty message instead of an error message when the status is...

## 发生了什么? 如果在一个表里有多个 hasmany 的关联关系,无法获取正常的值 ## 相关截图(必需) ## 最小可复现例子(必需) > Please provide a [minimal reproduction](https://stackoverflow.com/help/minimal-reproducible-example) then upload to your GitHub. 请提供 [最小重现](https://stackoverflow.com/help/minimal-reproducible-example),并上传到你的 GitHub 仓库 https://github.com/wwsheng009/yao-hasmany-unexpected ## 复现步骤 **Steps to reproduce...

https://github.com/YaoApp/yao/blob/5edc9e809f7fd9d8b404c99a4b51f71a2687f562/widgets/compute/compute.go#L245 https://github.com/YaoApp/yao/blob/5edc9e809f7fd9d8b404c99a4b51f71a2687f562/widgets/compute/compute.go#L104 这里的处理逻辑没有考虑关联表的字段。 假设有以下的图片显示字段要使用Download Compute处理器。当前的处理逻辑没有办法处理关联表material中的icon字段。 ``` "物资图标": { "bind": "material.icon", "view": { "type": "Image", "compute": { "process": "Download", "args": ["$C(value)", "$C(props)", "$C(type)", "$C(id)", "$C(path)"] }, "props": {} } } ```

## 发生了什么? 在.env文件中配置了环境变量YAO_ALLOW_FROM不为空后yao启动报错 报错: panic: handlers are already registered for path '/api/__yao/list/:id/component/:xpath/:method' ## 相关截图(必需) ## 最小可复现例子(必需) > Please provide a [minimal reproduction](https://stackoverflow.com/help/minimal-reproducible-example) then upload to your GitHub. 请提供 [最小重现](https://stackoverflow.com/help/minimal-reproducible-example),并上传到你的 GitHub...

Isolate dispose cause the memory leak。 https://github.com/rogchap/v8go/blob/cee5f84bb54338bdef150b3e43daace4669c5de2/isolate.go#L147C1-L147C1 ```go func (i *Isolate) Dispose() { if i.ptr == nil { return } C.IsolateDispose(i.ptr) i.ptr = nil i.cbs = nil //shoud release the...