Skip to content

Commit 8f3d045

Browse files
committed
Make Message interface unsealed
1 parent 9832e60 commit 8f3d045

File tree

1 file changed

+1
-1
lines changed
  • orchestration/src/main/java/com/sap/ai/sdk/orchestration

1 file changed

+1
-1
lines changed

orchestration/src/main/java/com/sap/ai/sdk/orchestration/Message.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import javax.annotation.Nonnull;
55

66
/** Interface representing convenience wrappers of chat message to the orchestration service. */
7-
public sealed interface Message permits UserMessage, AssistantMessage, SystemMessage {
7+
public interface Message {
88

99
/**
1010
* Converts the message to a serializable ChatMessage object.

0 commit comments

Comments
 (0)