Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for connection_error (0.06 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 static final String ERROR_INVALID_RESPONSE = "invalid_response";
    
        /** Error code for connection errors. */
        public static final String ERROR_CONNECTION = "connection_error";
    
        /** Error code for unknown errors. */
        public static final String ERROR_UNKNOWN = "unknown";
    
        /** The error code indicating the type of LLM error. */
        private final String errorCode;
    
        /**
    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/js/chat.js

                    model_not_found: 'The AI model was not found. Please contact the administrator.',
                    invalid_response: 'Received an invalid response from the AI service. Please try again.',
                    connection_error: 'Unable to connect to the AI service. Please check the network connection.',
                    unknown: 'An error occurred. Please try again.'
                }
            }
        };
    
        var state = {
    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)
Back to Top