Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for connection_error (0.07 seconds)

  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/WEB-INF/view/chat/chat.jsp

    						model_not_found: '<la:message key="labels.chat_error_model_not_found" />',
    						invalid_response: '<la:message key="labels.chat_error_invalid_response" />',
    						connection_error: '<la:message key="labels.chat_error_connection" />',
    						unknown: '<la:message key="labels.chat_error" />'
    					}
    				}
    			});
    		});
    	</script>
    </body>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  3. 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