Spaces:
Running
Running
File size: 15,257 Bytes
98c9143 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 | import consola from "consola"
import { randomBytes } from "node:crypto"
import fs from "node:fs"
import { PATHS } from "./paths"
export interface AppConfig {
auth?: {
apiKeys?: Array<string>
adminApiKey?: string
}
providers?: Record<string, ProviderConfig>
modelMappings?: Record<string, string>
extraPrompts?: Record<string, string>
smallModel?: string
responsesApiContextManagementModels?: Array<string>
modelReasoningEfforts?: Record<
string,
"none" | "minimal" | "low" | "medium" | "high" | "xhigh"
>
useMessagesApi?: boolean
useResponsesApiWebSocket?: boolean
anthropicApiKey?: string
useResponsesApiWebSearch?: boolean
claudeTokenMultiplier?: number
}
export interface ModelConfig {
temperature?: number
topP?: number
topK?: number
extraBody?: Record<string, unknown>
contextCache?: boolean
supportPdf?: boolean
toolContentSupportType?: Array<ToolContentSupportType>
}
export type ProviderAuthType = "authorization" | "x-api-key"
export type ProviderType = "anthropic" | "openai-compatible"
export type ToolContentSupportType = "array" | "image" | "pdf"
export interface ProviderConfig {
type?: string
enabled?: boolean
baseUrl?: string
apiKey?: string
authType?: ProviderAuthType
models?: Record<string, ModelConfig>
adjustInputTokens?: boolean
}
export interface ResolvedProviderConfig {
name: string
type: ProviderType
baseUrl: string
apiKey: string
authType: ProviderAuthType
models?: Record<string, ModelConfig>
adjustInputTokens?: boolean
}
const gpt5ExplorationPrompt = `## Exploration and reading files
- **Think first.** Before any tool call, decide ALL files/resources you will need.
- **Batch everything.** If you need multiple files (even from different places), read them together.
- **multi_tool_use.parallel** Use multi_tool_use.parallel to parallelize tool calls and only this.
- **Only make sequential calls if you truly cannot know the next file without seeing a result first.**
- **Workflow:** (a) plan all needed reads → (b) issue one parallel batch → (c) analyze results → (d) repeat if new, unpredictable reads arise.`
const gpt5CommentaryPrompt = `# Working with the user
You interact with the user through a terminal. You have 2 ways of communicating with the users:
- Share intermediary updates in \`commentary\` channel.
- After you have completed all your work, send a message to the \`final\` channel.
## Intermediary updates
- Intermediary updates go to the \`commentary\` channel.
- User updates are short updates while you are working, they are NOT final answers.
- You use 1-2 sentence user updates to communicate progress and new information to the user as you are doing work.
- Do not begin responses with conversational interjections or meta commentary. Avoid openers such as acknowledgements (“Done —”, “Got it”, “Great question, ”) or framing phrases.
- You provide user updates frequently, every 20s.
- Before exploring or doing substantial work, you start with a user update acknowledging the request and explaining your first step. You should include your understanding of the user request and explain what you will do. Avoid commenting on the request or using starters such as "Got it -" or "Understood -" etc.
- When exploring, e.g. searching, reading files, you provide user updates as you go, every 20s, explaining what context you are gathering and what you've learned. Vary your sentence structure when providing these updates to avoid sounding repetitive - in particular, don't start each sentence the same way.
- After you have sufficient context, and the work is substantial, you provide a longer plan (this is the only user update that may be longer than 2 sentences and can contain formatting).
- Before performing file edits of any kind, you provide updates explaining what edits you are making.
- As you are thinking, you very frequently provide updates even if not taking any actions, informing the user of your progress. You interrupt your thinking and send multiple updates in a row if thinking for more than 100 words.
- Tone of your updates MUST match your personality.`
const defaultConfig: AppConfig = {
auth: {
apiKeys: [],
},
providers: {},
modelMappings: {},
extraPrompts: {
"gpt-5-mini": gpt5ExplorationPrompt,
"gpt-5.3-codex": gpt5CommentaryPrompt,
"gpt-5.4-mini": gpt5CommentaryPrompt,
"gpt-5.4": gpt5CommentaryPrompt,
"gpt-5.5": gpt5CommentaryPrompt,
},
smallModel: "gpt-5-mini",
responsesApiContextManagementModels: [],
modelReasoningEfforts: {
"gpt-5-mini": "low",
"gpt-5.3-codex": "xhigh",
"gpt-5.4-mini": "xhigh",
"gpt-5.4": "xhigh",
"gpt-5.5": "xhigh",
},
useMessagesApi: true,
useResponsesApiWebSocket: true,
useResponsesApiWebSearch: true,
}
let cachedConfig: AppConfig | null = null
function normalizeAdminApiKey(adminApiKey: unknown): string | null {
if (typeof adminApiKey !== "string") {
if (adminApiKey !== undefined) {
consola.warn(
"Invalid auth.adminApiKey config. Expected a non-empty string.",
)
}
return null
}
const normalizedAdminApiKey = adminApiKey.trim()
if (!normalizedAdminApiKey) {
consola.warn(
"Invalid auth.adminApiKey config. Expected a non-empty string.",
)
return null
}
return normalizedAdminApiKey
}
function generateAdminApiKey(): string {
return randomBytes(32).toString("hex")
}
function isNodeError(error: unknown): error is NodeJS.ErrnoException {
return error instanceof Error && "code" in error
}
function ensureConfigFile(): void {
try {
fs.accessSync(PATHS.CONFIG_PATH, fs.constants.R_OK | fs.constants.W_OK)
} catch {
fs.mkdirSync(PATHS.APP_DIR, { recursive: true })
fs.writeFileSync(
PATHS.CONFIG_PATH,
`${JSON.stringify(defaultConfig, null, 2)}\n`,
"utf8",
)
try {
fs.chmodSync(PATHS.CONFIG_PATH, 0o600)
} catch {
return
}
}
}
function readConfigFromDisk(): AppConfig {
ensureConfigFile()
try {
const raw = fs.readFileSync(PATHS.CONFIG_PATH, "utf8")
if (!raw.trim()) {
fs.writeFileSync(
PATHS.CONFIG_PATH,
`${JSON.stringify(defaultConfig, null, 2)}\n`,
"utf8",
)
return defaultConfig
}
return JSON.parse(raw) as AppConfig
} catch (error) {
consola.error("Failed to read config file, using default config", error)
return defaultConfig
}
}
function readEditableConfigFromDisk(): AppConfig {
try {
const raw = fs.readFileSync(PATHS.CONFIG_PATH, "utf8")
if (!raw.trim()) {
return {}
}
return JSON.parse(raw) as AppConfig
} catch (error) {
if (isNodeError(error) && error.code === "ENOENT") {
return {}
}
if (error instanceof SyntaxError) {
throw new Error(`Config file is not valid JSON: ${PATHS.CONFIG_PATH}`)
}
throw error
}
}
function writeConfigToDisk(config: AppConfig): void {
fs.mkdirSync(PATHS.APP_DIR, { recursive: true })
fs.writeFileSync(
PATHS.CONFIG_PATH,
`${JSON.stringify(config, null, 2)}\n`,
"utf8",
)
}
function mergeDefaultConfig(config: AppConfig): {
mergedConfig: AppConfig
changed: boolean
} {
const extraPrompts = config.extraPrompts ?? {}
const defaultExtraPrompts = defaultConfig.extraPrompts ?? {}
const modelReasoningEfforts = config.modelReasoningEfforts ?? {}
const defaultModelReasoningEfforts = defaultConfig.modelReasoningEfforts ?? {}
const missingExtraPromptModels = Object.keys(defaultExtraPrompts).filter(
(model) => !Object.hasOwn(extraPrompts, model),
)
const missingReasoningEffortModels = Object.keys(
defaultModelReasoningEfforts,
).filter((model) => !Object.hasOwn(modelReasoningEfforts, model))
const hasExtraPromptChanges = missingExtraPromptModels.length > 0
const hasReasoningEffortChanges = missingReasoningEffortModels.length > 0
if (!hasExtraPromptChanges && !hasReasoningEffortChanges) {
return { mergedConfig: config, changed: false }
}
return {
mergedConfig: {
...config,
extraPrompts: {
...defaultExtraPrompts,
...extraPrompts,
},
modelReasoningEfforts: {
...defaultModelReasoningEfforts,
...modelReasoningEfforts,
},
},
changed: true,
}
}
function ensureAdminApiKey(config: AppConfig): {
mergedConfig: AppConfig
changed: boolean
} {
const normalizedAdminApiKey = normalizeAdminApiKey(config.auth?.adminApiKey)
if (normalizedAdminApiKey) {
if (config.auth?.adminApiKey === normalizedAdminApiKey) {
return { mergedConfig: config, changed: false }
}
return {
mergedConfig: {
...config,
auth: {
...(config.auth ?? {}),
adminApiKey: normalizedAdminApiKey,
},
},
changed: true,
}
}
const editableConfig = readEditableConfigFromDisk()
const { mergedConfig } = mergeDefaultConfig({
...editableConfig,
auth: {
...(editableConfig.auth ?? {}),
adminApiKey: generateAdminApiKey(),
},
})
return { mergedConfig, changed: true }
}
export function mergeConfigWithDefaults(): AppConfig {
const config = readConfigFromDisk()
const { mergedConfig, changed } = mergeDefaultConfig(config)
const {
mergedConfig: mergedConfigWithAdminApiKey,
changed: adminApiKeyChanged,
} = ensureAdminApiKey(mergedConfig)
const shouldPersistConfig = changed || adminApiKeyChanged
if (shouldPersistConfig) {
try {
writeConfigToDisk(mergedConfigWithAdminApiKey)
} catch (writeError) {
if (adminApiKeyChanged) {
throw writeError
}
consola.warn(
"Failed to write merged extraPrompts to config file",
writeError,
)
}
}
cachedConfig = mergedConfigWithAdminApiKey
return mergedConfigWithAdminApiKey
}
export function getConfig(): AppConfig {
cachedConfig ??= mergeDefaultConfig(readConfigFromDisk()).mergedConfig
return cachedConfig
}
export function reloadConfig(): AppConfig {
return mergeConfigWithDefaults()
}
export function getExtraPromptForModel(model: string): string {
const config = getConfig()
return config.extraPrompts?.[model] ?? ""
}
export function getModelMappings(): Record<string, string> {
const config = getConfig()
const modelMappings = config.modelMappings
if (!modelMappings) {
return { ...(defaultConfig.modelMappings ?? {}) }
}
const validMappings: Record<string, string> = {}
for (const [sourceModel, targetModel] of Object.entries(modelMappings)) {
if (
!sourceModel
|| typeof targetModel !== "string"
|| targetModel.length === 0
) {
continue
}
validMappings[sourceModel] = targetModel
}
return validMappings
}
function validateModelMappings(
modelMappings: Record<string, string>,
): Record<string, string> {
const validatedMappings: Record<string, string> = {}
for (const [sourceModel, targetModel] of Object.entries(modelMappings)) {
if (!sourceModel || !targetModel) {
throw new Error(
"Each model mapping must use non-empty source and target values.",
)
}
validatedMappings[sourceModel] = targetModel
}
return validatedMappings
}
export function setModelMappings(
modelMappings: Record<string, string>,
): Record<string, string> {
const nextConfig = {
...readEditableConfigFromDisk(),
modelMappings: validateModelMappings(modelMappings),
}
writeConfigToDisk(nextConfig)
cachedConfig = reloadConfig()
return getModelMappings()
}
export function resolveMappedModel(model: string): string {
return getModelMappings()[model] ?? model
}
export function getSmallModel(): string {
const config = getConfig()
return config.smallModel ?? "gpt-5-mini"
}
export function getResponsesApiContextManagementModels(): Array<string> {
const config = getConfig()
return (
config.responsesApiContextManagementModels
?? defaultConfig.responsesApiContextManagementModels
?? []
)
}
export function isResponsesApiContextManagementModel(model: string): boolean {
return getResponsesApiContextManagementModels().includes(model)
}
export function getReasoningEffortForModel(
model: string,
): "none" | "minimal" | "low" | "medium" | "high" | "xhigh" {
const config = getConfig()
return config.modelReasoningEfforts?.[model] ?? "high"
}
export function normalizeProviderBaseUrl(url: string): string {
return url.trim().replace(/\/+$/u, "")
}
function getDefaultProviderAuthType(
providerType: ProviderType,
): ProviderAuthType {
return providerType === "openai-compatible" ? "authorization" : "x-api-key"
}
export function resolveProviderAuthType(
providerName: string,
authType: string | undefined,
providerType: ProviderType,
): ProviderAuthType {
if (authType === undefined) {
return getDefaultProviderAuthType(providerType)
}
if (authType === "x-api-key") {
return "x-api-key"
}
if (authType === "authorization") {
return authType
}
consola.warn(
`Provider ${providerName} has invalid authType '${authType}', falling back to ${getDefaultProviderAuthType(providerType)}`,
)
return getDefaultProviderAuthType(providerType)
}
export function getProviderConfig(name: string): ResolvedProviderConfig | null {
const providerName = name.trim()
if (!providerName) {
return null
}
const config = getConfig()
const provider = config.providers?.[providerName]
if (!provider) {
return null
}
if (provider.enabled === false) {
return null
}
const type = provider.type ?? "anthropic"
if (type !== "anthropic" && type !== "openai-compatible") {
consola.warn(
`Provider ${providerName} is ignored because type '${type}' is not supported`,
)
return null
}
const baseUrl = normalizeProviderBaseUrl(provider.baseUrl ?? "")
const apiKey = (provider.apiKey ?? "").trim()
const authType = resolveProviderAuthType(
providerName,
provider.authType,
type,
)
if (!baseUrl || !apiKey) {
consola.warn(
`Provider ${providerName} is enabled but missing baseUrl or apiKey`,
)
return null
}
return {
name: providerName,
type,
baseUrl,
apiKey,
authType,
models: provider.models,
adjustInputTokens: provider.adjustInputTokens,
}
}
export function listEnabledProviders(): Array<string> {
const config = getConfig()
const providerNames = Object.keys(config.providers ?? {})
return providerNames.filter((name) => getProviderConfig(name) !== null)
}
export function isMessagesApiEnabled(): boolean {
const config = getConfig()
return config.useMessagesApi ?? true
}
export function isResponsesApiWebSocketEnabled(): boolean {
const config = getConfig()
return config.useResponsesApiWebSocket ?? true
}
export function getAnthropicApiKey(): string | undefined {
const config = getConfig()
return config.anthropicApiKey ?? process.env.ANTHROPIC_API_KEY ?? undefined
}
export function isResponsesApiWebSearchEnabled(): boolean {
const config = getConfig()
return config.useResponsesApiWebSearch ?? true
}
export function getClaudeTokenMultiplier(): number {
const config = getConfig()
return config.claudeTokenMultiplier ?? 1.15
}
|