- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getNoResultsSystemPrompt (0.1 seconds)
-
src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java
return unclearIntentSystemPrompt; } /** * Gets the system prompt for no-results responses. * * @return the no-results system prompt */ protected String getNoResultsSystemPrompt() { if (noResultsSystemPrompt == null) { throw new LlmException("noResultsSystemPrompt is not configured for " + getName()); } return noResultsSystemPrompt; }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 getUnclearIntentSystemPrompt() { return "unclear prompt {{languageInstruction}}"; } @Override protected String getNoResultsSystemPrompt() { return "no results prompt {{languageInstruction}}"; } @Override protected String getDocumentNotFoundSystemPrompt() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 53K bytes - Click Count (0)