- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 302 for mesiace (0.03 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/llm/LlmClientManager.java
} return client; } // RAG workflow delegation methods /** * Detects the intent of a user message using the configured LLM client. * * @param userMessage the user's message * @return the detected intent with extracted keywords * @throws LlmException if LLM is not available */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) -
src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java
// Test constructor with message only String message = "SSO authentication failed"; SsoProcessException exception = new SsoProcessException(message); assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } @Test public void test_constructor_withMessageAndCause() { // Test constructor with message and Exception causeCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 13.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/JobProcessingExceptionTest.java
} @Test public void test_constructor_withSpecialCharactersInMessage() { // Test constructor with special characters in message final String message = "Job failed with special chars: \n\t\r\"'<>&"; final JobProcessingException exception = new JobProcessingException(message); assertNotNull(exception); assertEquals(message, exception.getMessage());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/FessSystemExceptionTest.java
// Test constructor with message only String message = "Test exception message"; FessSystemException exception = new FessSystemException(message); assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } @Test public void test_constructor_withMessageAndCause() { // Test constructor with message and causeCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/ChatMessage.java
/** The unique identifier for this message. */ private String id; /** The role of the message sender (user or assistant). */ private String role; /** The content of the message. */ private String content; /** The timestamp when the message was created. */ private LocalDateTime timestamp; /** The list of sources referenced in this message. */ private List<ChatSource> sources;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 04:52:31 GMT 2026 - 10.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmMessage.java
/** The role of the message sender. */ private String role; /** The content of the message. */ private String content; /** * Default constructor. */ public LlmMessage() { } /** * Creates a new message with the specified role and content. * * @param role the message role * @param content the message content */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 12 10:32:40 GMT 2026 - 3.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmException.java
/** * Creates a new exception with the specified message. * * @param message the error message */ public LlmException(final String message) { super(message); errorCode = ERROR_UNKNOWN; } /** * Creates a new exception with the specified message and cause. * * @param message the error message * @param cause the cause of the exception */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/css/chat.css
.message-content p { margin: 0.5rem 0; } .message-content p:first-child { margin-top: 0; } .message-content p:last-child { margin-bottom: 0; } /* Headings in messages */ .message-content h1, .message-content h2, .message-content h3, .message-content h4, .message-content h5, .message-content h6 { margin: 0.75rem 0 0.375rem; font-weight: 600; line-height: 1.3; color: #172b4d; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:21:57 GMT 2026 - 19.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/validation/UriType.java
* * @return the protocol type */ ProtocolType protocolType(); /** * The validation error message. * * @return the error message */ String message() default "{org.lastaflute.validator.constraints.UriType.message}"; /** * The validation groups. * * @return the validation groups */ Class<?>[] groups() default {};Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java
@Test public void test_constructor_withMessage() { // Test with message only String message = "Data store error occurred"; DataStoreException exception = new DataStoreException(message); assertNotNull(exception); assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); assertTrue(exception instanceof FessSystemException);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 8.9K bytes - Click Count (0)