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

Method String

internal/thinking/types.go:24–37  ·  view source on GitHub ↗

String returns the string representation of ThinkingMode.

()

Source from the content-addressed store, hash-verified

22
23// String returns the string representation of ThinkingMode.
24func (m ThinkingMode) String() string {
25 switch m {
26 case ModeBudget:
27 return "budget"
28 case ModeLevel:
29 return "level"
30 case ModeNone:
31 return "none"
32 case ModeAuto:
33 return "auto"
34 default:
35 return "unknown"
36 }
37}
38
39// ThinkingLevel represents a discrete thinking level.
40type ThinkingLevel string

Calls

no outgoing calls