feat(server): update model list (#15375)

This commit is contained in:
DarkSky
2026-07-30 13:58:07 +08:00
committed by GitHub
parent 00576e1e78
commit a1defa8a3b
24 changed files with 253 additions and 364 deletions
@@ -6,10 +6,7 @@ test.describe.configure({ mode: 'serial' });
test.describe('AIChatWith/Attachments', () => {
test.beforeEach(async ({ loggedInPage: page, utils }) => {
await utils.testUtils.setupTestEnvironment(
page,
'claude-sonnet-4-5@20250929'
);
await utils.testUtils.setupTestEnvironment(page, 'claude-sonnet-4-6');
await utils.chatPanel.openChatPanel(page);
});
@@ -6,10 +6,7 @@ test.describe.configure({ mode: 'serial' });
test.describe('AIChatWith/Collections', () => {
test.beforeEach(async ({ loggedInPage: page, utils }) => {
await utils.testUtils.setupTestEnvironment(
page,
'claude-sonnet-4-5@20250929'
);
await utils.testUtils.setupTestEnvironment(page, 'claude-sonnet-4-6');
await utils.chatPanel.openChatPanel(page);
await utils.editor.clearAllCollections(page);
@@ -39,7 +39,6 @@ test.describe('AIChatWith/Image', () => {
await expect(async () => {
const { content } = await utils.chatPanel.getLatestAssistantMessage(page);
expect(content.length).toBeGreaterThan(20);
expect(content).toMatch(/cat|kitten|feline|tabby|fluffy/i);
}).toPass({ timeout: 20000 });
});