hermes - 💡(How to fix) Fix title_generation fails with 404: MiniMax /v1 endpoint [3 comments, 2 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
NousResearch/hermes-agent#17763Fetched 2026-05-01 05:56:03
View on GitHub
Comments
3
Participants
2
Timeline
8
Reactions
0
Author
Participants
Timeline (top)
labeled ×4commented ×3closed ×1

Error Message

The error message is literally an HTML 404 page, suggesting the request is hitting a wrong URL.

  • Different from the 404 page not found error in the logs title_generation should either work correctly or fail silently (not send error messages to user).
  1. Add proper error handling so 404 errors do not get sent to user via Telegram, OR

Code Example

Title generation failed: 404 page not found
RAW_BUFFERClick to expand / collapse

Bug Description

After the latest Hermes update (Apr 29 2026), the new title_generation auxiliary feature fails with:

Title generation failed: 404 page not found

The error message is literally an HTML 404 page, suggesting the request is hitting a wrong URL.

Environment

  • Hermes version: Latest (Apr 29 update)
  • Provider: MiniMax (MiniMax-M2.7)
  • Config: auxiliary.title_generation.provider: auto
  • Platform: macOS

What works

  • Main chat works fine — can talk to bot via Telegram without issues
  • Vision auxiliary works
  • Other auxiliary tasks work

What fails

  • title_generation always returns 404 page not found
  • Log shows: WARNING agent.title_generator: Title generation failed: 404 page not found
  • When failure_callback fires, user receives: ⚠ Auxiliary title generation failed: HTTP 404: 404 page not found

Investigation so far

  • Direct curl test: https://api.minimax.io/v1/chat/completions returns 401 with "login fail: Please carry the API secret key"
  • Different from the 404 page not found error in the logs
  • Main chat works, meaning the auth is OK for the primary endpoint
  • title_generation may be using a different code path that hits a wrong endpoint

Expected behavior

title_generation should either work correctly or fail silently (not send error messages to user).

Suggested fix

  1. Fix the URL/endpoint path for title_generation with MiniMax provider, OR
  2. Add proper error handling so 404 errors do not get sent to user via Telegram, OR
  3. Add a config option to disable title_generation entirely

This feature was added in the latest update and users did not opt-in to it — consider making it opt-out instead of opt-in.

extent analysis

TL;DR

The most likely fix is to update the URL/endpoint path for the title_generation feature with the MiniMax provider to prevent 404 errors.

Guidance

  • Verify the endpoint URL used by title_generation and compare it with the working main chat endpoint to identify any discrepancies.
  • Check the MiniMax API documentation to ensure the correct endpoint is being used for title_generation.
  • Consider adding a temporary workaround to handle 404 errors silently, preventing error messages from being sent to users via Telegram.
  • Review the configuration options to determine if adding an opt-out feature for title_generation is feasible.

Example

No code snippet is provided as the issue does not contain sufficient code details.

Notes

The investigation suggests that the title_generation feature may be using a different code path that hits a wrong endpoint, causing the 404 error. The main chat feature works correctly, indicating that authentication is not the issue.

Recommendation

Apply a workaround to handle 404 errors silently for the title_generation feature until the correct endpoint URL can be determined and updated, as this will prevent error messages from being sent to users.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

FAQ

Expected behavior

title_generation should either work correctly or fail silently (not send error messages to user).

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

hermes - 💡(How to fix) Fix title_generation fails with 404: MiniMax /v1 endpoint [3 comments, 2 participants]