(self)
| 27 | |
| 28 | impl TaskKind { |
| 29 | pub fn shape(self) -> &'static str { |
| 30 | match self { |
| 31 | Self::LlmRequest => "◆", |
| 32 | Self::LlmResponse => "▶", |
| 33 | Self::FileRead => "◈", |
| 34 | Self::FileWrite => "◇", |
| 35 | Self::CommandExec => "⬡", |
| 36 | Self::ToolCall => "●", |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | pub fn inactive_shape() -> &'static str { |
| 41 | "·" |