We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
controller/index.ts
1 parent 7c7e86d commit b54db8bCopy full SHA for b54db8b
src/core/controller/index.ts
@@ -1,5 +1,6 @@
1
import { Anthropic } from "@anthropic-ai/sdk"
2
import axios from "axios"
3
+import type { AxiosRequestConfig } from "axios"
4
import crypto from "crypto"
5
import { execa } from "execa"
6
import fs from "fs/promises"
@@ -1461,7 +1462,7 @@ Here is the project's README to help you get started:\n\n${mcpDetails.readmeCont
1461
1462
return []
1463
}
1464
- const config: Record<string, any> = {}
1465
+ const config: AxiosRequestConfig = {}
1466
if (apiKey) {
1467
config["headers"] = { Authorization: `Bearer ${apiKey}` }
1468
0 commit comments