(message: Any)
| 12 | |
| 13 | |
| 14 | def message_content(message: Any) -> str: |
| 15 | if hasattr(message, "content"): |
| 16 | return str(message.content) |
| 17 | return str(message) |
| 18 | |
| 19 | |
| 20 | def flatten_history(history: Iterable[Any]) -> str: |
no outgoing calls
no test coverage detected