Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for rate_limit (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/llm/LlmException.java

     */
    public class LlmException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        /** Error code for rate limit (HTTP 429). */
        public static final String ERROR_RATE_LIMIT = "rate_limit";
    
        /** Error code for authentication failure (HTTP 401/403). */
        public static final String ERROR_AUTH = "auth_error";
    
        /** Error code for service unavailable (HTTP 502/503). */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 01:53:06 GMT 2026
    - 3.5K bytes
    - Click Count (0)
  2. src/main/webapp/WEB-INF/orig/view/chat/chat.jsp

    						evaluate: '<la:message key="labels.chat_phase_evaluate" />',
    						fetch: '<la:message key="labels.chat_phase_fetch" />',
    						answer: '<la:message key="labels.chat_phase_answer" />'
    					},
    					errors: {
    						rate_limit: '<la:message key="labels.chat_error_rate_limit" />',
    						auth_error: '<la:message key="labels.chat_error_auth" />',
    						service_unavailable: '<la:message key="labels.chat_error_service_unavailable" />',
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/llm/LlmExceptionTest.java

            assertEquals(LlmException.ERROR_AUTH, exception.getErrorCode());
            assertSame(cause, exception.getCause());
        }
    
        @Test
        public void test_errorCodeConstants() {
            assertEquals("rate_limit", LlmException.ERROR_RATE_LIMIT);
            assertEquals("auth_error", LlmException.ERROR_AUTH);
            assertEquals("service_unavailable", LlmException.ERROR_SERVICE_UNAVAILABLE);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 05 04:19:06 GMT 2026
    - 5.7K bytes
    - Click Count (0)
  4. src/main/webapp/js/chat.js

                    evaluate: 'Evaluating results...',
                    fetch: 'Retrieving content...',
                    answer: 'Generating answer...'
                },
                errors: {
                    rate_limit: 'It\'s currently busy. Please wait a moment and try again.',
                    auth_error: 'AI service authentication failed. Please contact the administrator.',
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
  5. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

            if (typeof options.maxSpan === 'object')
                this.maxSpan = options.maxSpan;
    
            if (typeof options.dateLimit === 'object') //backwards compat
                this.maxSpan = options.dateLimit;
    
            if (typeof options.opens === 'string')
                this.opens = options.opens;
    
            if (typeof options.drops === 'string')
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 64.8K bytes
    - Click Count (0)
Back to Top