- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for RAG (0.02 seconds)
-
src/main/java/org/codelibs/fess/chat/ChatClient.java
public ChatClient() { // Default constructor } /** * Checks if RAG chat is available. * * @return true if RAG chat is available */ public boolean isAvailable() { final boolean available = llmClientManager.available(); if (logger.isTraceEnabled()) { logger.trace("[RAG] ChatClient availability check. available={}", available); } return available;
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/java/org/codelibs/fess/llm/AbstractLlmClient.java
httpClient = null; } } /** * Starts periodic availability checking if RAG chat is enabled. */ protected void startAvailabilityCheck() { if (!isRagChatEnabled()) { if (logger.isDebugEnabled()) { logger.debug("RAG chat is disabled. Skipping availability check."); } return; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 72K bytes - Click Count (0) -
src/main/resources/fess_config.properties
# RAG Chat # ------ # Whether RAG chat feature is enabled. rag.chat.enabled=false # Chat generation settings. rag.chat.context.max.documents=5 # Session settings. rag.chat.session.timeout.minutes=30 rag.chat.session.max.size=10000 rag.chat.history.max.messages=30
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 59.3K bytes - Click Count (0) -
pom.xml
<dependency> <groupId>org.apache.groovy</groupId> <artifactId>groovy</artifactId> <version>${groovy.version}</version> </dependency> <!-- markdown and html sanitization for RAG chat --> <dependency> <groupId>org.commonmark</groupId> <artifactId>commonmark</artifactId> <version>0.24.0</version> </dependency> <dependency> <groupId>org.commonmark</groupId>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 49.9K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp
styleClass="form-control"/> </div> </div> <%-- RAG --%> <c:if test="${ragEnabled}"> <h4><la:message key="labels.general_rag"/></h4> <div class="form-group row">Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 83.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java
} // ========== History content mode pattern tests ========== // These test the different history shapes that extractHistory() produces // depending on rag.chat.history.assistant.content mode (full, source_titles, // source_titles_and_urls, truncated, none). @Test public void test_buildIntentRequest_noneMode_userOnlyHistory() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 53K bytes - Click Count (0)