MCPcopy Index your code
hub / github.com/codeaashu/claude-code / formatLimitReachedText

Function formatLimitReachedText

src/services/rateLimitMessages.ts:333–344  ·  view source on GitHub ↗
(
  limit: string,
  resetMessage: string,
  _model: string,
)

Source from the content-addressed store, hash-verified

331}
332
333function formatLimitReachedText(
334 limit: string,
335 resetMessage: string,
336 _model: string,
337): string {
338 // Enhanced messaging for Ant users
339 if (process.env.USER_TYPE === 'ant') {
340 return `You've hit your ${limit}${resetMessage}. If you have feedback about this limit, post in ${FEEDBACK_CHANNEL_ANT}. You can reset your limits with /reset-limits`
341 }
342
343 return `You've hit your ${limit}${resetMessage}`
344}
345

Callers 1

getLimitReachedTextFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected