| 515 | /// Markdown text message. |
| 516 | #[derive(Debug, Clone)] |
| 517 | pub struct AssistantResponseMessage { |
| 518 | /// Unique identifier for the chat message |
| 519 | pub message_id: Option<String>, |
| 520 | /// The content of the text message in markdown format. |
| 521 | pub content: String, |
| 522 | /// ToolUse Request |
| 523 | pub tool_uses: Option<Vec<ToolUse>>, |
| 524 | } |
| 525 | |
| 526 | impl TryFrom<AssistantResponseMessage> for amzn_codewhisperer_streaming_client::types::AssistantResponseMessage { |
| 527 | type Error = aws_smithy_types::error::operation::BuildError; |
no outgoing calls
no test coverage detected