Apply suggestions from code review

This commit is contained in:
Christiaan Arnoldus
2026-03-06 16:22:26 +01:00
committed by GitHub
parent abe48bc6a5
commit 3fff82bfa2
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -35,4 +35,4 @@ jobs:
KILO_ORG_ID: ${{ secrets.KILO_ORG_ID }}
KILO_PERMISSION: '{"bash": "deny"}'
with:
model: kilo-auto/frontier
model: kilo/kilo-auto/frontier
+1 -1
View File
@@ -72,7 +72,7 @@ const serverEnv = {
KILO_E2E_PROJECT_DIR: repoDir,
KILO_E2E_SESSION_TITLE: "E2E Session",
KILO_E2E_MESSAGE: "Seeded for UI e2e",
KILO_E2E_MODEL: "kilo-auto/frontier", // kilocode_change
KILO_E2E_MODEL: "kilo/kilo-auto/frontier", // kilocode_change
KILO_CLIENT: "app",
} satisfies Record<string, string>
+1 -1
View File
@@ -1,7 +1,7 @@
const dir = process.env.KILO_E2E_PROJECT_DIR ?? process.cwd()
const title = process.env.KILO_E2E_SESSION_TITLE ?? "E2E Session"
const text = process.env.KILO_E2E_MESSAGE ?? "Seeded for UI e2e"
const model = process.env.KILO_E2E_MODEL ?? "kilo-auto/frontier"
const model = process.env.KILO_E2E_MODEL ?? "kilo/kilo-auto/frontier"
const parts = model.split("/")
const providerID = parts[0] ?? "kilo" // kilocode_change
const modelID = parts.slice(1).join("/") || "kilo-auto/frontier" // kilocode_change