Type of message that is a system message.
| 48 | |
| 49 | |
| 50 | class SystemMessage(BaseMessage): |
| 51 | """Type of message that is a system message.""" |
| 52 | |
| 53 | @property |
| 54 | def type(self) -> str: |
| 55 | """Type of the message, used for serialization.""" |
| 56 | return "system" |
| 57 | |
| 58 | |
| 59 | class FunctionMessage(BaseMessage): |
no outgoing calls
no test coverage detected