(type: MemoryType)
| 1387 | } |
| 1388 | |
| 1389 | const getTypeIcon = (type: MemoryType) => { |
| 1390 | switch (type) { |
| 1391 | case 'fact': return <User className="w-3 h-3" /> |
| 1392 | case 'preference': return <Settings className="w-3 h-3" /> |
| 1393 | case 'instruction': return <MessageSquare className="w-3 h-3" /> |
| 1394 | } |
| 1395 | } |
| 1396 | |
| 1397 | const getTypeLabel = (type: MemoryType) => { |
| 1398 | switch (type) { |