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