RockteMQ-AI commented on issue #1553: URL: https://github.com/apache/rocketmq-dashboard/issues/1553#issuecomment-5248869222
**Issue Evaluation** Category: `bug` | Status: **Confirmed** The reported issue is valid. The LLM provider detection uses case-sensitive string comparison after `toLowerCase()`, which is locale-dependent. In Turkish locale, `"OpenAI".toLowerCase()` produces `"openaı"` (with dotless i), failing to match `"openai"`. **Root Cause:** Same locale-sensitivity pattern as #1555 — `toLowerCase()` without `Locale.ROOT`. **Severity:** Low — LLM features become unavailable in Turkish and similar locales. An automated fix proposal can be generated. Reply `/approve` to proceed with PR generation. --- *Automated evaluation by github-manager* -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
