Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/vscode-e2e/src/suite/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export async function run() {
await api.setConfiguration({
apiProvider: "openrouter" as const,
openRouterApiKey: process.env.OPENROUTER_API_KEY!,
openRouterModelId: "openai/gpt-4.1",
openRouterModelId: "openai/gpt-5-mini",
})

await vscode.commands.executeCommand("roo-cline.SidebarProvider.focus")
Expand Down
4 changes: 2 additions & 2 deletions packages/evals/src/db/queries/__tests__/copyRun.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe("copyRun", () => {

beforeEach(async () => {
const run = await createRun({
model: "gpt-4.1-mini",
model: "gpt-5-mini",
socketPath: "/tmp/roo.sock",
description: "Test run for copying",
concurrency: 4,
Expand Down Expand Up @@ -179,7 +179,7 @@ describe("copyRun", () => {
})

expect(copiedRun).toBeDefined()
expect(copiedRun!.model).toBe("gpt-4.1-mini")
expect(copiedRun!.model).toBe("gpt-5-mini")
expect(copiedRun!.description).toBe("Test run for copying")
expect(copiedRun!.concurrency).toBe(4)
expect(copiedRun!.passed).toBe(2)
Expand Down
2 changes: 1 addition & 1 deletion packages/evals/src/db/queries/__tests__/runs.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { createTaskMetrics } from "../taskMetrics.js"

describe("finishRun", () => {
it("aggregates task metrics, including tool usage", async () => {
const run = await createRun({ model: "gpt-4.1-mini", socketPath: "/tmp/roo.sock" })
const run = await createRun({ model: "gpt-5-mini", socketPath: "/tmp/roo.sock" })

await createTask({
runId: run.id,
Expand Down
Loading