chore: config, layout, project history, simulation framework updates

This commit is contained in:
2026-03-02 10:15:44 -05:00
parent 0b5552fa01
commit eb293f3c96
9 changed files with 93 additions and 67 deletions

View File

@@ -10,9 +10,9 @@ class AISettingsSimulation(BaseSimulation):
provider = self.client.get_value("current_provider")
model = self.client.get_value("current_model")
print(f"[Sim] Initial Provider: {provider}, Model: {model}")
assert provider == "gemini", f"Expected gemini, got {provider}"
assert provider == "gemini_cli", f"Expected gemini_cli, got {provider}"
# 2. Switch to another Gemini model
other_gemini = "gemini-1.5-flash"
other_gemini = "gemini-2.0-flash"
print(f"[Sim] Switching to {other_gemini}...")
self.client.set_value("current_model", other_gemini)
time.sleep(2)