• v2.3.2-coder-answer-endpoint: fix ask_user_input submit in CoderPane

    indifferentketchup released this 2026-05-26 21:54:08 +00:00 | 56 commits to main since this release

    The CoderPane runs its own inference runner and broker on the boocoder
    service. The AskUserInputCard was calling /api/chats/:id/answer_user_input
    on the main BooChat server, which has a different inference runner — the
    answer was accepted but the next turn was enqueued on the wrong runner,
    so nothing happened.

    Fix: register the same answer_user_input endpoint on the boocoder, and
    add an apiPrefix prop to AskUserInputCard so the CoderPane routes
    through /api/coder/chats/:id/answer_user_input. BooChat's MessageList
    continues to use the default (no prefix) path.

    Co-Authored-By: Claude Opus 4.6 (1M context) noreply@anthropic.com

    Downloads