feat(agent): add assistant model selector

This commit is contained in:
ginnoir
2026-07-08 16:46:53 -05:00
parent 27db599444
commit 4c82d551ea
4 changed files with 125 additions and 18 deletions
+1
View File
@@ -15,6 +15,7 @@ test("assistant chat smoke after opt-in", async ({ page }) => {
await page.goto("/");
await page.getByRole("button", { name: "Open assistant" }).click();
await expect(page.getByRole("dialog", { name: "Assistant" })).toBeVisible();
await expect(page.getByRole("combobox", { name: "Assistant model" })).toBeVisible();
await page.getByLabel("Message for Assistant").fill("hello assistant");
await page.getByRole("button", { name: "Send" }).click();