Kevin van Dijk 6 ay önce
ebeveyn
işleme
7563258af8

+ 9 - 9
packages/types/src/providers/chutes.ts

@@ -228,6 +228,15 @@ export const chutesModels = {
 		description:
 			"GLM-4.5-FP8 model with 98,304 token context window, optimized for agent-based applications with MoE architecture.",
 	},
+	"Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8": {
+		maxTokens: 32768,
+		contextWindow: 262144,
+		supportsImages: false,
+		supportsPromptCache: false,
+		inputPrice: 0,
+		outputPrice: 0,
+		description: "Qwen3 Coder 480B A35B Instruct FP8 model, optimized for coding tasks.",
+	},
 	"Qwen/Qwen3-235B-A22B-Thinking-2507": {
 		maxTokens: 32768,
 		contextWindow: 262144,
@@ -264,15 +273,6 @@ export const chutesModels = {
 		outputPrice: 0.266688,
 		description: "Moonshot AI Kimi Dev 72B model with 131K context window.",
 	},
-	"Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8": {
-		maxTokens: 32768,
-		contextWindow: 262144,
-		supportsImages: false,
-		supportsPromptCache: false,
-		inputPrice: 0.1999188,
-		outputPrice: 0.800064,
-		description: "Qwen3 Coder 480B A35B Instruct FP8 model with 262K context window.",
-	},
 	"chutesai/Devstral-Small-2505": {
 		maxTokens: 32768,
 		contextWindow: 131072,

+ 2 - 1
src/api/providers/__tests__/lm-studio-timeout.spec.ts

@@ -28,7 +28,8 @@ vitest.mock("openai", () => {
 	}
 })
 
-describe("LmStudioHandler timeout configuration", () => {
+// kilocode_change: own timeout
+describe.skip("LmStudioHandler timeout configuration", () => {
 	beforeEach(() => {
 		vitest.clearAllMocks()
 	})

+ 4 - 3
src/api/providers/__tests__/requesty.spec.ts

@@ -74,9 +74,10 @@ describe("RequestyHandler", () => {
 			baseURL: "some-base-url",
 			apiKey: mockOptions.requestyApiKey,
 			defaultHeaders: {
-				"HTTP-Referer": "https://github.com/RooVetGit/Roo-Cline",
-				"X-Title": "Roo Code",
-				"User-Agent": `RooCode/${Package.version}`,
+				"HTTP-Referer": "https://kilocode.ai",
+				"X-Title": "Kilo Code",
+				"X-KiloCode-Version": Package.version,
+				"User-Agent": `Kilo-Code/${Package.version}`,
 			},
 		})
 	})