dosubot[bot]

Results 14327 comments of dosubot[bot]

**Related Documentation** Checked 1 published document(s) in 1 knowledge base(s). No updates required. How did I do? Any feedback?  [![Join Discord](https://img.shields.io/badge/join-5865F2?logo=discord&logoColor=white&label=)](https://go.dosu.dev/discord-bot)

Hi @Ahmedayaz1210! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the ragflow team. To support multiple users with RAGFlow and OpenWebUI, each user should have a separate RAGFlow chat session identified by a...

Hi @PuvvadaBhaskar! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the less.js team. The min and max functions in Less are designed to work with numbers and units, and their implementation checks for...

Hey @PokerFaceCoder, I'm here to help you with any bugs, questions, or contributions you have for Dify. Let's take a look at the issue you've encountered together. To resolve the...

Hi @serenaqchen! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the storybook team. This build error happens because Storybook 10.1.x injects Vitest's mocker runtime whenever a preview config file (like `.storybook/preview.ts` or `.storybook/preview.js`)...

在 PropertyResolver.java 的 handleNormalLine 方法中,`kv[1].replace("\\n", "\n")` 这行代码会把 Value 里的 `\n` 字符串替换为真正的换行符。这是 Apollo 很早期就设计的行为,目的是让用户在文本模式下可以通过输入 `\n` 实现多行内容,方便配置多行文本(比如 JSON、脚本等)[相关讨论](https://github.com/apolloconfig/apollo/issues/5332)。 但这种做法确实会导致用户原本输入的 `\n` 被转成换行符,尤其是在表格模式和文本模式切换时,容易出现数据不一致的问题。这个行为目前无法通过配置关闭或自定义。如果你需要保留 `\n` 作为纯文本,建议只用表格模式编辑和保存,避免用文本模式。如果客户端需要还原为 `\n`,可以在获取配置后将实际换行符再替换回 `\n` 字符串[官方建议](https://github.com/apolloconfig/apollo/issues/5445)。 *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* ---...

出现 Apollo.EurekaDiscovery.NotFound 的原因通常是 Apollo 客户端通过 Eureka 拉取实例列表时,Eureka 没有返回对应服务(如 APOLLO_ADMINSERVICE)的实例。根据代码实现和监控数据,这属于正常的服务发现机制:如果 Eureka 没有注册该服务或实例列表为空,就会记录 NotFound 事件并返回空列表 [代码参考](https://github.com/apolloconfig/apollo/blob/master/apollo-configservice/src/main/java/com/ctrip/framework/apollo/metaservice/service/DefaultDiscoveryService.java)。 常见原因包括: - 服务刚启动或重启,注册到 Eureka 有延迟,导致短暂查不到实例。 - Eureka 注册表同步有延迟或网络抖动,部分节点未及时同步。 - 服务实例异常下线、重启或网络不通,导致 Eureka 暂时查不到。 - 配置错误(如服务名、meta server 地址、admin...

You're right—assigning `pointRef.current` to a React ref only captures the point at that moment and doesn't keep it updated, so it's technically redundant if you expect a live reference. In...

Hi @zhenwang1219! I'm [Dosu](https://go.dosu.dev/dosubot) and I’m helping the ragflow team. RAGFlow v0.19.1 can extract and store images from your input chunks (like PDFs or Google Drive files) as part of...

In the retrieval_test API, the final similarity score ("similarity") is a weighted sum of "term_Similarity" (token/keyword similarity) and "vector_Similarity" (vector/cosine similarity). The formula is: similarity = term_Similarity × (1 -...