- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for generateSummaryResponse (0.08 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/llm/LlmClient.java
* @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); /** * Generates an FAQ answer using document content (streaming).
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/main/java/org/codelibs/fess/llm/AbstractLlmClient.java
applyPromptTypeParams(request, "docnotfound"); request.setStream(true); streamChatWithConcurrencyControl(request, callback); } @Override public void generateSummaryResponse(final String userMessage, final List<Map<String, Object>> documents, final List<LlmMessage> history, final LlmStreamCallback callback) { final LlmChatRequest request = new LlmChatRequest();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 72K bytes - Click Count (0)