- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for invalid_response (0.07 seconds)
-
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) -
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) -
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) -
src/main/java/jcifs/internal/witness/WitnessHeartbeatMessage.java
* Validates that the heartbeat response is correct. * The response sequence number should match the request sequence number. * * @return true if the response is valid */ public boolean isValidResponse() { return isSuccess() && responseSequenceNumber == sequenceNumber; } @Override protected void encodeWitnessParameters(NdrBuffer buf) throws NdrException {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 09:06:40 GMT 2025 - 5.8K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java
void testSetResponseWithInvalidType() { CommonServerMessageBlockResponse invalidResponse = mock(CommonServerMessageBlockResponse.class); assertThrows(IllegalArgumentException.class, () -> { testBlock.setResponse(invalidResponse); }); } @Test @DisplayName("Test ignore disconnect")
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 36.2K bytes - Click Count (0)