- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for source_titles_and_urls (0.1 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/chat/ChatClientTest.java
import org.junit.jupiter.api.TestInfo; /** * Tests for ChatClient's extractHistory and buildAssistantHistoryContent methods. * Verifies correct behavior across all assistant content modes (full, source_titles, * source_titles_and_urls, truncated, none). */ public class ChatClientTest extends UnitFessTestCase { private TestableChatClient chatClient; @Override protected void setUp(final TestInfo testInfo) throws Exception {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 40.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatClient.java
/** * Builds the assistant message content for history based on the specified mode. * * @param msg the assistant chat message * @param mode the content mode (full, smart_summary, source_titles, source_titles_and_urls, truncated, none) * @param assistantMaxChars the maximum characters for truncated mode * @param summaryMaxChars the maximum characters for summary modesCreated: 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/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java
// 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() { // When mode=none, extractHistory skips assistant messages,
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 53K bytes - Click Count (0) -
src/main/resources/fess_config.properties
# Highlight settings for RAG search. rag.chat.highlight.fragment.size=500 rag.chat.highlight.number.of.fragments=3 # History content mode for assistant messages (full, smart_summary, source_titles, source_titles_and_urls, truncated, none). rag.chat.history.assistant.content=smart_summary # Index Export index.export.path=/var/lib/fess/export index.export.exclude.fields=cache index.export.scroll.size=100
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)