- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getHtmlContent (0.14 seconds)
-
src/main/java/org/codelibs/fess/entity/ChatMessage.java
return ROLE_ASSISTANT.equals(role); } /** * Gets the HTML-rendered content. * * @return the HTML content, or null if not rendered */ public String getHtmlContent() { return htmlContent; } /** * Sets the HTML-rendered content. * * @param htmlContent the HTML content */
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/api/chat/ChatApiManager.java
final Map<String, Object> doneData = new HashMap<>(); doneData.put("sessionId", result.getSessionId()); final String htmlContent = result.getMessage().getHtmlContent(); if (htmlContent != null) { doneData.put("htmlContent", htmlContent); } sendSseEvent(writer, "done", doneData); if (logger.isDebugEnabled()) {
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)