Uses of Class
org.codelibs.fess.entity.ChatMessage
Packages that use ChatMessage
-
Uses of ChatMessage in org.codelibs.fess.chat
Methods in org.codelibs.fess.chat that return ChatMessageMethods in org.codelibs.fess.chat with parameters of type ChatMessageModifier and TypeMethodDescriptionbooleanChatSessionManager.addMessage(String sessionId, ChatMessage message) Adds a message to a session.Constructors in org.codelibs.fess.chat with parameters of type ChatMessageModifierConstructorDescriptionChatResult(String sessionId, ChatMessage message, List<Map<String, Object>> sources) Creates a new chat result. -
Uses of ChatMessage in org.codelibs.fess.entity
Methods in org.codelibs.fess.entity that return ChatMessageModifier and TypeMethodDescriptionstatic ChatMessageChatMessage.assistantMessage(String content) Creates an assistant message with the specified content.static ChatMessageChatMessage.userMessage(String content) Creates a user message with the specified content.Methods in org.codelibs.fess.entity that return types with arguments of type ChatMessageModifier and TypeMethodDescriptionChatSession.getMessages()Returns a copy of the message list in this session.Methods in org.codelibs.fess.entity with parameters of type ChatMessageModifier and TypeMethodDescriptionvoidChatSession.addMessage(ChatMessage message) Adds a message to this session and updates the last accessed timestamp.Method parameters in org.codelibs.fess.entity with type arguments of type ChatMessageModifier and TypeMethodDescriptionvoidChatSession.setMessages(List<ChatMessage> messages) Sets the message list for this session.