(String text)
| 37 | } |
| 38 | |
| 39 | public static String thinking(String text) { |
| 40 | return wrap(ITALIC + GRAY, text); |
| 41 | } |
| 42 | |
| 43 | public static String userMessageBlock(String text, int columns) { |
| 44 | String safe = text == null ? "" : text.strip(); |
no test coverage detected