mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-08-29 03:32:08 +08:00
Apply suggestions from code review
This commit is contained in:
committed by
GitHub
parent
abe48bc6a5
commit
3fff82bfa2
@@ -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
|
||||
|
||||
@@ -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,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
|
||||
|
||||
Reference in New Issue
Block a user