Package io.jmix.aitoolsflowui.service
Interface AiChatMessageService
- All Known Implementing Classes:
AiChatMessageDataService,AiChatMessageEmptyService
public interface AiChatMessageService
Provides access to the messages of the current user's AI conversations.
Operates purely on the AiChatMessage model and is implicitly scoped to
the current user.
-
Method Summary
Modifier and TypeMethodDescriptioncreateMessage(AiConversation conversation, AiChatMessageType type, String message) Creates a new message of the given type in the conversation.@Nullable AiChatMessageloadLatestMessage(AiConversation conversation, @Nullable AiChatMessageType type) Loads the most recent message of the conversation, optionally restricted to a type.loadMessages(AiConversation conversation) Loads all messages of the conversation, oldest first.
-
Method Details
-
createMessage
Creates a new message of the given type in the conversation.- Parameters:
conversation- conversation the message belongs totype- message typemessage- message text- Returns:
- the created message
-
loadLatestMessage
@Nullable AiChatMessage loadLatestMessage(AiConversation conversation, @Nullable AiChatMessageType type) Loads the most recent message of the conversation, optionally restricted to a type.- Parameters:
conversation- conversation whose latest message is loadedtype- message type to match, ornullfor any type- Returns:
- the latest matching message, or
nullif there is none
-
loadMessages
Loads all messages of the conversation, oldest first.- Parameters:
conversation- conversation whose messages are loaded- Returns:
- the conversation's messages, oldest first; empty if there are none
-