- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getHistoryAssistantMaxChars (0.12 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java
} @Override protected int getIntentHistoryMaxChars() { return testIntentHistoryMaxChars; } @Override public int getHistoryAssistantMaxChars() { return testHistoryAssistantMaxChars; } @Override public int getHistoryAssistantSummaryMaxChars() { return testHistoryAssistantSummaryMaxChars;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 53K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatClient.java
final LlmClient client = llmClientManager.getClient(); final int assistantMaxChars = client != null ? client.getHistoryAssistantMaxChars() : 800; final int summaryMaxChars = client != null ? client.getHistoryAssistantSummaryMaxChars() : 800; final List<LlmMessage> history = new ArrayList<>();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 56.6K bytes - Click Count (0)