- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 234 for documents (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/llm/LlmClient.java
/** * Generates a summary of the specified documents. * * @param userMessage the user's message * @param documents the documents to summarize * @param history the conversation history * @param callback the streaming callback */ void generateSummaryResponse(String userMessage, List<Map<String, Object>> documents, List<LlmMessage> history, LlmStreamCallback callback);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 7.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/DocumentsTests.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/index/SuggestIndexerErrorHandlingTest.java
Map<String, Object>[] documents = new Map[1]; documents[0] = new HashMap<>(); // Document doesn't contain the supported field documents[0].put("other_field", "some content"); SuggestIndexResponse response = suggester.indexer().indexFromDocument(documents); assertNotNull(response);Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sat Mar 14 02:35:38 GMT 2026 - 18.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/UpdateLabelJobTest.java
@Test public void test_execute_success() { String result = updateLabelJob.execute(); assertNotNull(result); assertTrue(result.contains("3 documents")); // 3 documents processed assertFalse(result.contains("exception")); } // Test execute() method with query builder @Test public void test_execute_withQueryBuilder() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmClientManager.java
* * @param userMessage the user's message * @param documents the documents with content * @param history the conversation history * @param callback the streaming callback * @throws LlmException if LLM is not available */ public void generateFaqAnswerResponse(final String userMessage, final List<Map<String, Object>> documents,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/main/java/org/codelibs/fess/llm/RelevanceEvaluationResult.java
/** * Creates a result with no relevant documents found. * * @return evaluation result with no relevant documents */ public static RelevanceEvaluationResult noRelevantResults() { return new RelevanceEvaluationResult(Collections.emptyList(), Collections.emptyList(), false); } /** * Creates a fallback result that includes all documents as relevant.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 01 08:11:18 GMT 2026 - 3.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatClient.java
public ChatSearchResult(final List<Map<String, Object>> documents, final String queryId, final long requestedTime) { this.documents = documents; this.queryId = queryId; this.requestedTime = requestedTime; } /** * Gets the search result documents. * * @return the list of documents */
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/suggest/index/SuggestIndexer.java
} /** * Indexes documents from an array of maps. * @param documents The documents to index. * @return The SuggestIndexResponse. */ public SuggestIndexResponse indexFromDocument(final Map<String, Object>[] documents) { ensureOperations(); return contentOps.indexFromDocument(createContext(), documents); } /**Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sat Mar 14 02:35:38 GMT 2026 - 20.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/index/SuggestIndexerTest.java
Map<String, Object>[] documents = new Map[2]; documents[0] = new HashMap<>(); documents[0].put(field, "これはテストです"); documents[1] = new HashMap<>(); documents[1].put(field, "検索エンジン"); SuggestIndexResponse response = suggester.indexer().indexFromDocument(documents); assertNotNull(response);Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sat Mar 14 02:35:38 GMT 2026 - 28.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java
final List<LlmMessage> history) { if (logger.isDebugEnabled()) { logger.debug("[RAG:ANSWER] generateAnswer. userMessage={}, documentCount={}, historySize={}", userMessage, documents.size(), history.size()); } final String context = buildContext(documents, "answer");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 72K bytes - Click Count (0)