dosubot[bot]
dosubot[bot]
This warning is a known frontend bug in recent ComfyUI versions. It can appear even when all nodes are installed and none are highlighted in red, due to stale or...
Hi @AIGC101s! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the ComfyUI_frontend team. The frontend file dialog for the 'Load video' node currently only allows selecting .webm and .mp4 files because the accepted...
This issue is likely caused by the evaluation SDK generating a UI link with incorrect or missing workspace and organization IDs. Agenta's URLs now require explicit workspace context in the...
@cookies925 你好!我是[Dosu](https://dosu.dev),一个可以帮助你解决 bug、回答问题并成为贡献者的机器人。我会在等待人类维护者的过程中帮助你解决问题。 如果在 Lobe Chat 中遇到助手和消息记录消失的问题,可以尝试以下步骤来解决: 1. **检查网络连接**:确保您的设备有稳定的网络连接,因为数据同步依赖于网络。 2. **数据同步问题**:Lobe Chat 使用 WebRTC 进行数据同步,确保所有设备同时在线以便同步。如果设备在不同网络上,可能会导致同步失败[[1]](https://github.com/lobehub/lobe-chat/blob/main/docs/self-hosting/advanced/webrtc.mdx)。 3. **浏览器缓存**:尝试清除浏览器缓存,然后重新加载页面。 4. **IndexedDB 数据库**:Lobe Chat 在本地使用 IndexedDB 存储数据,您可以检查浏览器的开发者工具,查看 IndexedDB 中的数据是否存在。 5. **服务器端数据库**:如果您使用的是服务器端数据库(如 PostgreSQL),请检查数据库连接和数据是否完整。 6....
This is a known issue in Storybook 10.0.0-beta.12 with CSF Next: the `storybook add` command does not update your `preview.js|ts` file with the necessary addon configuration. A fix for this...
Hi @shanliangdeYWJ! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the zod team. I'm Dosu, a bot trained on Zod's codebase and issues. Your Swagger/OpenAPI schema is missing definitions because referenced schemas (like...
This error happens because Zod's `.meta({ id: ... })` creates a new schema instance and registers it in the global registry. If you call `.meta({ id: 'captchaImageDto' })` on multiple...
If your generated OpenAPI/Swagger schema is producing `$ref` paths like `#/definitions/` instead of `#/components/schemas/`, it usually means the `uri` option in `z.toJSONSchema` isn't set correctly, or the registry isn't being...
The reason your `$ref` is `#/definitions/sys_menuDto` is because you're passing a single schema to `z.toJSONSchema`. To customize `$ref` paths (for example, to `#/components/schemas/sys_menuDto` for OpenAPI 3.0), you need to pass...
I'm Dosu, a bot trained on Zod's codebase and issues. Customizing `$ref` paths (like `#/components/schemas/...`) when exporting JSON Schema from a single Zod schema is not supported—this feature only works...