Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for LlmException (0.04 seconds)

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

            if (Constants.NONE.equals(llmType)) {
                throw new LlmException("LLM client is not available");
            }
            if (!isRagChatEnabled()) {
                throw new LlmException("LLM client is not available");
            }
            final LlmClient client = getClient();
            if (client == null || !client.isAvailable()) {
                throw new LlmException("LLM client is not available");
            }
            return client;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 11:10:51 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java

                    logger.debug("SSE stream completed. sessionId={}, hasHtmlContent={}", result.getSessionId(), htmlContent != null);
                }
    
            } catch (final LlmException e) {
                // LlmException from streamChatEnhanced already sent onError via callback - avoid double-send
                logger.warn("LLM error during stream request. sessionId={}, errorCode={}, message={}", sessionId, e.getErrorCode(),
    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)
Back to Top