- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for errors_timeout (0.07 seconds)
-
src/main/java/org/codelibs/fess/llm/LlmException.java
/** Error code for service unavailable (HTTP 502/503). */ public static final String ERROR_SERVICE_UNAVAILABLE = "service_unavailable"; /** Error code for request timeout. */ public static final String ERROR_TIMEOUT = "timeout"; /** Error code for context length exceeded. */ public static final String ERROR_CONTEXT_LENGTH_EXCEEDED = "context_length_exceeded"; /** Error code for model not found. */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/java/org/codelibs/fess/llm/AbstractLlmClient.java
logger.warn("[LLM] Request interrupted while waiting for concurrency permit. name={}", getName()); Thread.currentThread().interrupt(); throw new LlmException("Request interrupted", LlmException.ERROR_TIMEOUT); } } /** * Executes a streaming chat request with concurrency control via Semaphore. * * @param request the chat request * @param callback the streaming callback
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 72K bytes - Click Count (0)