Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for invalid_response (0.44 seconds)

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

        public static final String ERROR_MODEL_NOT_FOUND = "model_not_found";
    
        /** Error code for invalid response from the LLM provider. */
        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. */
    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

    						context_length_exceeded: '<la:message key="labels.chat_error_context_length_exceeded" />',
    						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" />'
    					}
    				}
    			});
    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

                    context_length_exceeded: 'The message is too long to process. Please shorten it and try again.',
                    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.',
    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