- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for onError (0.15 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/chat/ChatPhaseCallback.java
/** * Called when an error occurs during processing. * * @param phase the phase where the error occurred * @param error the error message */ void onError(String phase, String error); /** * Returns a no-op callback implementation. * * @return a callback that does nothing */ static ChatPhaseCallback noOp() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:32:04 GMT 2026 - 3.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmStreamCallback.java
*/ void onChunk(String chunk, boolean done); /** * Called when an error occurs during streaming. * * @param error the error that occurred */ default void onError(final Throwable error) { // Default implementation does nothing }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 12 10:32:40 GMT 2026 - 1.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 06:06:55 GMT 2026 - 25.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatClient.java
callback.onError("llm", e.getErrorCode()); throw e; } catch (final Exception e) { logger.warn("[RAG] Unexpected error during enhanced chat. sessionId={}, error={}, elapsedTime={}ms", session.getSessionId(), e.getMessage(), System.currentTimeMillis() - startTime, e); callback.onError("unknown", LlmException.ERROR_UNKNOWN); throw e;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 56.6K bytes - Click Count (0) -
src/main/webapp/js/chat.js
} } catch (ex) {} handleError(thinkingId, messageElement, errorMessage); eventSource.close(); }); eventSource.onerror = function() { if (!state.errorHandled) { handleError(thinkingId, messageElement, config.labels.error); } eventSource.close(); };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)