- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getSystemPrompt (0.07 seconds)
-
src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java
*/ protected abstract String getConfigPrefix(); /** * Gets the base system prompt for RAG chat responses. * * @return the system prompt */ protected String getSystemPrompt() { if (systemPrompt == null) { throw new LlmException("systemPrompt is not configured for " + getName()); } return systemPrompt; } /**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/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java
} @Override protected String getConfigPrefix() { return "rag.llm.test"; } @Override protected String getSystemPrompt() { return testSystemPrompt; } @Override protected String getIntentDetectionPrompt() { return testIntentDetectionPrompt; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 53K bytes - Click Count (0)