- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for RAG (0.03 seconds)
-
src/main/java/org/codelibs/fess/app/web/chat/ChatAction.java
import org.codelibs.fess.util.RenderDataUtil; import org.lastaflute.web.Execute; import org.lastaflute.web.response.HtmlResponse; import jakarta.annotation.Resource; /** * Action class for the RAG chat page. * * @author FessProject */ public class ChatAction extends FessSearchAction { private static final Logger logger = LogManager.getLogger(ChatAction.class); /** * Default constructor.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Tue Mar 10 14:54:51 GMT 2026 - 4.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmClient.java
* Implementations provide integration with different LLM providers * such as Ollama, OpenAI, and Google Gemini. * * In addition to low-level chat operations, this interface defines * high-level RAG workflow methods that allow each provider to optimize * prompt construction, parameter tuning, and response parsing. */ public interface LlmClient { /** * Performs a chat completion request. *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)