MCPcopy Create free account
hub / github.com/chainreactors/EvilProxy / isBudgetCapableProvider

Function isBudgetCapableProvider

internal/thinking/validate.go:340–347  ·  view source on GitHub ↗

isBudgetCapableProvider returns true if the provider supports budget-based thinking. These providers may also support level-based thinking (hybrid models).

(provider string)

Source from the content-addressed store, hash-verified

338// isBudgetCapableProvider returns true if the provider supports budget-based thinking.
339// These providers may also support level-based thinking (hybrid models).
340func isBudgetCapableProvider(provider string) bool {
341 switch provider {
342 case "gemini", "antigravity", "claude":
343 return true
344 default:
345 return false
346 }
347}
348
349func isGeminiFamily(provider string) bool {
350 switch provider {

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected