Spaces:
Paused
Paused
Julian Bilcke
commited on
Commit
·
4ac2b4f
1
Parent(s):
e305906
disable simulation by default
Browse files
lib/screens/settings_screen.dart
CHANGED
|
@@ -22,7 +22,7 @@ class _SettingsScreenState extends State<SettingsScreen> {
|
|
| 22 |
final _settingsService = SettingsService();
|
| 23 |
final _availabilityService = ModelAvailabilityService();
|
| 24 |
bool _showSceneDebugInfo = false;
|
| 25 |
-
bool _enableSimulation =
|
| 26 |
int _simLoopDelayInSec = 1;
|
| 27 |
String _selectedLlmProvider = 'built-in';
|
| 28 |
String _selectedLlmModel = 'meta-llama/Llama-3.2-3B-Instruct';
|
|
|
|
| 22 |
final _settingsService = SettingsService();
|
| 23 |
final _availabilityService = ModelAvailabilityService();
|
| 24 |
bool _showSceneDebugInfo = false;
|
| 25 |
+
bool _enableSimulation = false;
|
| 26 |
int _simLoopDelayInSec = 1;
|
| 27 |
String _selectedLlmProvider = 'built-in';
|
| 28 |
String _selectedLlmModel = 'meta-llama/Llama-3.2-3B-Instruct';
|