RBoy
(RBoy)
14. Dezember 2025 um 12:36
1
Ein kleiner Fehler auf der LLM-Nutzungsseite. Wenn Sie ein neues LLM-Modell erstellen und einen Test dafür ausführen, wird es im Nutzungsbericht unter llm_validator angezeigt, aber da es noch keinen Namen für das LLM gibt, wird der Modellname in der Filterliste angezeigt (kein LLM-Name), in diesem Fall moonshotai
Wenn Sie es jedoch auswählen, ändert sich der Dropdown-Filter auf 0 anstelle von moonshotai und alle Statistiken werden als 0 angezeigt
1 „Gefällt mir“
Danke für den Bericht @RBoy , das wird durch
main ← ux-preserve-features-models-dropdown-options-when-filtering
opened 01:55PM - 15 Dec 25 UTC
When selecting a model or feature filter on the LLM Usage page, the dropdown wou… ld lose its options and display incorrect values (like "0") because fetchData() was clearing the cached dropdown options on every request.
The filtered API response only contains models/features matching the filter, so rebuilding the dropdown options from filtered data caused other options to disappear.
Added a `clearCache` parameter to fetchData():
- Initial load and date range changes pass `clearCache: true` to refresh options
- Filter changes use the default `clearCache: false` to preserve all options
Ref - https://meta.discourse.org/t/391273
behoben
3 „Gefällt mir“