improved mpy compat

This commit is contained in:
Luxferre
2025-12-20 22:50:08 +02:00
parent 1972ebb27f
commit 3e50e07b1d
2 changed files with 5 additions and 4 deletions
+2 -2
View File
@@ -87,6 +87,6 @@ chat.command('model', set_model)
chat.command('modellist', list_models)
chat.command('provlist', list_providers)
chat.command('help', display_help)
chat.command('exit', lambda m,s: ('Exiting', None))
chat.command('quit', lambda m,s: ('Exiting', None))
chat.command('exit', lambda m,s: ('Exiting...', None))
chat.command('quit', lambda m,s: ('Exiting...', None))
chat.start()