Create an assistant message.
(content: String)
| 54 | |
| 55 | /// Create an assistant message. |
| 56 | pub fn assistant(content: String) -> Self { |
| 57 | Self { |
| 58 | role: MessageRole::Assistant, |
| 59 | content, |
| 60 | } |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | #[cfg(test)] |
nothing calls this directly
no outgoing calls
no test coverage detected