438f379
diff -ur a/brain.py b/brain.py
438f379
--- a/brain.py	2010-03-09 18:08:30.000000000 +0100
438f379
+++ b/brain.py	2010-03-09 18:08:54.000000000 +0100
438f379
@@ -26,23 +26,9 @@
438f379
 
438f379
 from toolkit.combobox import ComboBox
438f379
 
438f379
-import bot.aiml
438f379
 import voice
438f379
 
438f379
-BOTS = {
438f379
-    _('Spanish'): { 'name': 'Sara',
438f379
-                    'brain': 'bot/sara.brn',
438f379
-                    'predicates': { 'nombre_bot': 'Sara',
438f379
-                                    'botmaster': 'la comunidad Azucar' } },
438f379
-    _('English'): { 'name': 'Alice',
438f379
-                    'brain': 'bot/alice.brn',
438f379
-                    'predicates': { 'name': 'Alice',
438f379
-                                    'master': 'the Sugar Community' } } }
438f379
-
438f379
-# load Standard AIML set for restricted systems
438f379
-if int([i for i in file('/proc/meminfo').readlines()
438f379
-        if i.startswith('MemTotal:')][0].split()[1]) < 524288:
438f379
-    BOTS[_('English')]['brain'] = 'bot/alisochka.brn'
438f379
+BOTS = {}
438f379
 
438f379
 _kernel = None
438f379
 _kernel_voice = None