(value: string)
| 33 | } |
| 34 | |
| 35 | function stableHash(value: string): string { |
| 36 | return createHash('sha256').update(value).digest('hex') |
| 37 | } |
| 38 | |
| 39 | function extractLastUserMessageContent(content: string): string { |
| 40 | const regex = /<user_message>([\s\S]*?)<\/user_message>/gi |
no outgoing calls
no test coverage detected