set allProbes()

in src/app/ui/main/chat/chat.component.ts [55:68]


    set allProbes(value: NlpProbe[]) {
        if (!this.isSameProbeList(value)) {
            this._allProbes = value

            // Update models cache.
            this._allModels = []

            value.forEach(p => {
                p.models.forEach(m => {
                    this._allModels.push(m)
                })
            })
        }
    }