in src/app/ui/main/chat/chat.component.ts [173:177]
private isSameProbeList(value: NlpProbe[]) {
// Using JSON comparison for simplicity.
// Should replace with comparison by probe ID for better performance.
return JSON.stringify(value) === JSON.stringify(this._allProbes)
}