(message: string)
| 183 | * when auto-memory is enabled and the GrowthBook flag is on. |
| 184 | */ |
| 185 | export function withMemoryCorrectionHint(message: string): string { |
| 186 | if ( |
| 187 | isAutoMemoryEnabled() && |
| 188 | getFeatureValue_CACHED_MAY_BE_STALE('tengu_amber_prism', false) |
| 189 | ) { |
| 190 | return message + MEMORY_CORRECTION_HINT |
| 191 | } |
| 192 | return message |
| 193 | } |
| 194 | |
| 195 | /** |
| 196 | * Derive a short stable message ID (6-char base36 string) from a UUID. |
no test coverage detected