1. 04 Jul, 2026 2 commits
  2. 03 Jul, 2026 16 commits
  3. 02 Jul, 2026 8 commits
  4. 01 Jul, 2026 2 commits
  5. 30 Jun, 2026 4 commits
  6. 29 Jun, 2026 1 commit
  7. 28 Jun, 2026 3 commits
  8. 27 Jun, 2026 4 commits
    • fix(openai): harden Chat-to-Responses compatibility (#5772) · 3a506f50
      Add a shared Responses-to-Chat stream state machine and use it from the OpenAI relay path. Preserve assistant text alongside tool calls, bind tool argument deltas by output_index, map incomplete finish reasons, support reasoning/custom tool events, and buffer upstream SSE for non-stream Chat clients.
      
      Add deterministic service tests and relay SSE tests for the conversion path.
      
      Related to #5745.
      Calcium-Ion committed
    • fix(web): render custom HTML and Markdown content consistently (#5760) · 0b48ad86
      * fix(markdown): render announcement markdown consistently
      
      - support soft line breaks for announcement markdown without changing the default parser behavior.
      - add explicit markdown element styles so lists, tables, code blocks, and quotes render correctly when typography styles are unavailable.
      - apply the announcement markdown mode in both the popover and detail dialog for consistent display.
      
      * refactor(markdown): simplify fallback markdown styles
      
      - remove duplicate typography utility classes now covered by explicit markdown element fallbacks.
      - keep the markdown renderer behavior unchanged while reducing class noise.
      - modernize small helper expressions to satisfy targeted lint checks.
      
      * fix(content): render custom HTML consistently
      
      - add shared rich content rendering so custom HTML and Markdown use the same path across public pages and announcements.
      - reuse common URL and HTML detection instead of duplicating content format checks per page.
      - keep custom home content inside the standard public layout while preserving full-page iframe rendering for external URLs.
      QuentinHsu committed
    • fix(auth): align password validation copy (#5759) · df5ba9fa
      * fix(i18n): add missing frontend translations
      
      - add missing locale entries for API key loading, channel model empty states, auth, playground, and model configuration copy.
      - correct inaccurate Russian and Vietnamese model empty-state translations to avoid fallback or misleading copy.
      
      * fix(auth): align password validation copy
      
      - remove the login password length gate so existing shorter passwords are not blocked before reaching the server.
      - reuse distinct minimum-length and 8-20 character messages based on the actual validation rule.
      - drop unused duplicate password locale keys and align the user creation placeholder with the 8-20 character constraint.
      
      * fix(i18n): add auth validation message translations
      
      - cover schema-driven auth form errors that are translated through FormMessage.
      - keep password, username, confirmation, and OTP validation messages available in every locale.
      QuentinHsu committed