1package config
2
3import (
4 "cmp"
5 "context"
6 "fmt"
7 "log/slog"
8 "net/http"
9 "net/url"
10 "os"
11 "slices"
12 "strings"
13 "time"
14
15 "github.com/charmbracelet/catwalk/pkg/catwalk"
16 "github.com/charmbracelet/crush/internal/csync"
17 "github.com/charmbracelet/crush/internal/env"
18 "github.com/charmbracelet/crush/internal/oauth"
19 "github.com/charmbracelet/crush/internal/oauth/claude"
20 "github.com/invopop/jsonschema"
21 "github.com/tidwall/sjson"
22)
23
24const (
25 appName = "crush"
26 defaultDataDirectory = ".crush"
27 defaultInitializeAs = "AGENTS.md"
28)
29
30var defaultContextPaths = []string{
31 ".github/copilot-instructions.md",
32 ".cursorrules",
33 ".cursor/rules/",
34 "CLAUDE.md",
35 "CLAUDE.local.md",
36 "GEMINI.md",
37 "gemini.md",
38 "crush.md",
39 "crush.local.md",
40 "Crush.md",
41 "Crush.local.md",
42 "CRUSH.md",
43 "CRUSH.local.md",
44 "AGENTS.md",
45 "agents.md",
46 "Agents.md",
47}
48
49type SelectedModelType string
50
51const (
52 SelectedModelTypeLarge SelectedModelType = "large"
53 SelectedModelTypeSmall SelectedModelType = "small"
54)
55
56const (
57 AgentCoder string = "coder"
58 AgentTask string = "task"
59)
60
61type SelectedModel struct {
62 // The model id as used by the provider API.
63 // Required.
64 Model string `json:"model" jsonschema:"required,description=The model ID as used by the provider API,example=gpt-4o"`
65 // The model provider, same as the key/id used in the providers config.
66 // Required.
67 Provider string `json:"provider" jsonschema:"required,description=The model provider ID that matches a key in the providers config,example=openai"`
68
69 // Only used by models that use the openai provider and need this set.
70 ReasoningEffort string `json:"reasoning_effort,omitempty" jsonschema:"description=Reasoning effort level for OpenAI models that support it,enum=low,enum=medium,enum=high"`
71
72 // Used by anthropic models that can reason to indicate if the model should think.
73 Think bool `json:"think,omitempty" jsonschema:"description=Enable thinking mode for Anthropic models that support reasoning"`
74
75 // Overrides the default model configuration.
76 MaxTokens int64 `json:"max_tokens,omitempty" jsonschema:"description=Maximum number of tokens for model responses,maximum=200000,example=4096"`
77 Temperature *float64 `json:"temperature,omitempty" jsonschema:"description=Sampling temperature,minimum=0,maximum=1,example=0.7"`
78 TopP *float64 `json:"top_p,omitempty" jsonschema:"description=Top-p (nucleus) sampling parameter,minimum=0,maximum=1,example=0.9"`
79 TopK *int64 `json:"top_k,omitempty" jsonschema:"description=Top-k sampling parameter"`
80 FrequencyPenalty *float64 `json:"frequency_penalty,omitempty" jsonschema:"description=Frequency penalty to reduce repetition"`
81 PresencePenalty *float64 `json:"presence_penalty,omitempty" jsonschema:"description=Presence penalty to increase topic diversity"`
82
83 // Override provider specific options.
84 ProviderOptions map[string]any `json:"provider_options,omitempty" jsonschema:"description=Additional provider-specific options for the model"`
85}
86
87type ProviderConfig struct {
88 // The provider's id.
89 ID string `json:"id,omitempty" jsonschema:"description=Unique identifier for the provider,example=openai"`
90 // The provider's name, used for display purposes.
91 Name string `json:"name,omitempty" jsonschema:"description=Human-readable name for the provider,example=OpenAI"`
92 // The provider's API endpoint.
93 BaseURL string `json:"base_url,omitempty" jsonschema:"description=Base URL for the provider's API,format=uri,example=https://api.openai.com/v1"`
94 // The provider type, e.g. "openai", "anthropic", etc. if empty it defaults to openai.
95 Type catwalk.Type `json:"type,omitempty" jsonschema:"description=Provider type that determines the API format,enum=openai,enum=openai-compat,enum=anthropic,enum=gemini,enum=azure,enum=vertexai,default=openai"`
96 // The provider's API key.
97 APIKey string `json:"api_key,omitempty" jsonschema:"description=API key for authentication with the provider,example=$OPENAI_API_KEY"`
98 // OAuthToken for providers that use OAuth2 authentication.
99 OAuthToken *oauth.Token `json:"oauth,omitempty" jsonschema:"description=OAuth2 token for authentication with the provider"`
100 // Marks the provider as disabled.
101 Disable bool `json:"disable,omitempty" jsonschema:"description=Whether this provider is disabled,default=false"`
102
103 // Custom system prompt prefix.
104 SystemPromptPrefix string `json:"system_prompt_prefix,omitempty" jsonschema:"description=Custom prefix to add to system prompts for this provider"`
105
106 // Extra headers to send with each request to the provider.
107 ExtraHeaders map[string]string `json:"extra_headers,omitempty" jsonschema:"description=Additional HTTP headers to send with requests"`
108 // Extra body
109 ExtraBody map[string]any `json:"extra_body,omitempty" jsonschema:"description=Additional fields to include in request bodies, only works with openai-compatible providers"`
110
111 ProviderOptions map[string]any `json:"provider_options,omitempty" jsonschema:"description=Additional provider-specific options for this provider"`
112
113 // Used to pass extra parameters to the provider.
114 ExtraParams map[string]string `json:"-"`
115
116 // The provider models
117 Models []catwalk.Model `json:"models,omitempty" jsonschema:"description=List of models available from this provider"`
118}
119
120func (pc *ProviderConfig) SetupClaudeCode() {
121 pc.APIKey = fmt.Sprintf("Bearer %s", pc.OAuthToken.AccessToken)
122 pc.SystemPromptPrefix = "You are Claude Code, Anthropic's official CLI for Claude."
123 pc.ExtraHeaders["anthropic-version"] = "2023-06-01"
124
125 value := pc.ExtraHeaders["anthropic-beta"]
126 const want = "oauth-2025-04-20"
127 if !strings.Contains(value, want) {
128 if value != "" {
129 value += ","
130 }
131 value += want
132 }
133 pc.ExtraHeaders["anthropic-beta"] = value
134}
135
136type MCPType string
137
138const (
139 MCPStdio MCPType = "stdio"
140 MCPSSE MCPType = "sse"
141 MCPHttp MCPType = "http"
142)
143
144type MCPConfig struct {
145 Command string `json:"command,omitempty" jsonschema:"description=Command to execute for stdio MCP servers,example=npx"`
146 Env map[string]string `json:"env,omitempty" jsonschema:"description=Environment variables to set for the MCP server"`
147 Args []string `json:"args,omitempty" jsonschema:"description=Arguments to pass to the MCP server command"`
148 Type MCPType `json:"type" jsonschema:"required,description=Type of MCP connection,enum=stdio,enum=sse,enum=http,default=stdio"`
149 URL string `json:"url,omitempty" jsonschema:"description=URL for HTTP or SSE MCP servers,format=uri,example=http://localhost:3000/mcp"`
150 Disabled bool `json:"disabled,omitempty" jsonschema:"description=Whether this MCP server is disabled,default=false"`
151 Timeout int `json:"timeout,omitempty" jsonschema:"description=Timeout in seconds for MCP server connections,default=15,example=30,example=60,example=120"`
152
153 // TODO: maybe make it possible to get the value from the env
154 Headers map[string]string `json:"headers,omitempty" jsonschema:"description=HTTP headers for HTTP/SSE MCP servers"`
155}
156
157type LSPConfig struct {
158 Disabled bool `json:"disabled,omitempty" jsonschema:"description=Whether this LSP server is disabled,default=false"`
159 Command string `json:"command,omitempty" jsonschema:"required,description=Command to execute for the LSP server,example=gopls"`
160 Args []string `json:"args,omitempty" jsonschema:"description=Arguments to pass to the LSP server command"`
161 Env map[string]string `json:"env,omitempty" jsonschema:"description=Environment variables to set to the LSP server command"`
162 FileTypes []string `json:"filetypes,omitempty" jsonschema:"description=File types this LSP server handles,example=go,example=mod,example=rs,example=c,example=js,example=ts"`
163 RootMarkers []string `json:"root_markers,omitempty" jsonschema:"description=Files or directories that indicate the project root,example=go.mod,example=package.json,example=Cargo.toml"`
164 InitOptions map[string]any `json:"init_options,omitempty" jsonschema:"description=Initialization options passed to the LSP server during initialize request"`
165 Options map[string]any `json:"options,omitempty" jsonschema:"description=LSP server-specific settings passed during initialization"`
166}
167
168type TUIOptions struct {
169 CompactMode bool `json:"compact_mode,omitempty" jsonschema:"description=Enable compact mode for the TUI interface,default=false"`
170 DiffMode string `json:"diff_mode,omitempty" jsonschema:"description=Diff mode for the TUI interface,enum=unified,enum=split"`
171 // Here we can add themes later or any TUI related options
172 //
173
174 Completions Completions `json:"completions,omitzero" jsonschema:"description=Completions UI options"`
175}
176
177// Completions defines options for the completions UI.
178type Completions struct {
179 MaxDepth *int `json:"max_depth,omitempty" jsonschema:"description=Maximum depth for the ls tool,default=0,example=10"`
180 MaxItems *int `json:"max_items,omitempty" jsonschema:"description=Maximum number of items to return for the ls tool,default=1000,example=100"`
181}
182
183func (c Completions) Limits() (depth, items int) {
184 return ptrValOr(c.MaxDepth, 0), ptrValOr(c.MaxItems, 0)
185}
186
187type Permissions struct {
188 AllowedTools []string `json:"allowed_tools,omitempty" jsonschema:"description=List of tools that don't require permission prompts,example=bash,example=view"` // Tools that don't require permission prompts
189 SkipRequests bool `json:"-"` // Automatically accept all permissions (YOLO mode)
190}
191
192type TrailerStyle string
193
194const (
195 TrailerStyleNone TrailerStyle = "none"
196 TrailerStyleCoAuthoredBy TrailerStyle = "co-authored-by"
197 TrailerStyleAssistedBy TrailerStyle = "assisted-by"
198)
199
200type Attribution struct {
201 TrailerStyle TrailerStyle `json:"trailer_style,omitempty" jsonschema:"description=Style of attribution trailer to add to commits,enum=none,enum=co-authored-by,enum=assisted-by,default=assisted-by"`
202 CoAuthoredBy *bool `json:"co_authored_by,omitempty" jsonschema:"description=Deprecated: use trailer_style instead"`
203 GeneratedWith bool `json:"generated_with,omitempty" jsonschema:"description=Add Generated with Crush line to commit messages and issues and PRs,default=true"`
204}
205
206// JSONSchemaExtend marks the co_authored_by field as deprecated in the schema.
207func (Attribution) JSONSchemaExtend(schema *jsonschema.Schema) {
208 if schema.Properties != nil {
209 if prop, ok := schema.Properties.Get("co_authored_by"); ok {
210 prop.Deprecated = true
211 }
212 }
213}
214
215type Options struct {
216 ContextPaths []string `json:"context_paths,omitempty" jsonschema:"description=Paths to files containing context information for the AI,example=.cursorrules,example=CRUSH.md"`
217 TUI *TUIOptions `json:"tui,omitempty" jsonschema:"description=Terminal user interface options"`
218 Debug bool `json:"debug,omitempty" jsonschema:"description=Enable debug logging,default=false"`
219 DebugLSP bool `json:"debug_lsp,omitempty" jsonschema:"description=Enable debug logging for LSP servers,default=false"`
220 DisableAutoSummarize bool `json:"disable_auto_summarize,omitempty" jsonschema:"description=Disable automatic conversation summarization,default=false"`
221 DataDirectory string `json:"data_directory,omitempty" jsonschema:"description=Directory for storing application data (relative to working directory),default=.crush,example=.crush"` // Relative to the cwd
222 DisabledTools []string `json:"disabled_tools" jsonschema:"description=Tools to disable"`
223 DisableProviderAutoUpdate bool `json:"disable_provider_auto_update,omitempty" jsonschema:"description=Disable providers auto-update,default=false"`
224 Attribution *Attribution `json:"attribution,omitempty" jsonschema:"description=Attribution settings for generated content"`
225 DisableMetrics bool `json:"disable_metrics,omitempty" jsonschema:"description=Disable sending metrics,default=false"`
226 InitializeAs string `json:"initialize_as,omitempty" jsonschema:"description=Name of the context file to create/update during project initialization,default=AGENTS.md,example=AGENTS.md,example=CRUSH.md,example=CLAUDE.md,example=docs/LLMs.md"`
227}
228
229type MCPs map[string]MCPConfig
230
231type MCP struct {
232 Name string `json:"name"`
233 MCP MCPConfig `json:"mcp"`
234}
235
236func (m MCPs) Sorted() []MCP {
237 sorted := make([]MCP, 0, len(m))
238 for k, v := range m {
239 sorted = append(sorted, MCP{
240 Name: k,
241 MCP: v,
242 })
243 }
244 slices.SortFunc(sorted, func(a, b MCP) int {
245 return strings.Compare(a.Name, b.Name)
246 })
247 return sorted
248}
249
250type LSPs map[string]LSPConfig
251
252type LSP struct {
253 Name string `json:"name"`
254 LSP LSPConfig `json:"lsp"`
255}
256
257func (l LSPs) Sorted() []LSP {
258 sorted := make([]LSP, 0, len(l))
259 for k, v := range l {
260 sorted = append(sorted, LSP{
261 Name: k,
262 LSP: v,
263 })
264 }
265 slices.SortFunc(sorted, func(a, b LSP) int {
266 return strings.Compare(a.Name, b.Name)
267 })
268 return sorted
269}
270
271func (l LSPConfig) ResolvedEnv() []string {
272 return resolveEnvs(l.Env)
273}
274
275func (m MCPConfig) ResolvedEnv() []string {
276 return resolveEnvs(m.Env)
277}
278
279func (m MCPConfig) ResolvedHeaders() map[string]string {
280 resolver := NewShellVariableResolver(env.New())
281 for e, v := range m.Headers {
282 var err error
283 m.Headers[e], err = resolver.ResolveValue(v)
284 if err != nil {
285 slog.Error("error resolving header variable", "error", err, "variable", e, "value", v)
286 continue
287 }
288 }
289 return m.Headers
290}
291
292type Agent struct {
293 ID string `json:"id,omitempty"`
294 Name string `json:"name,omitempty"`
295 Description string `json:"description,omitempty"`
296 // This is the id of the system prompt used by the agent
297 Disabled bool `json:"disabled,omitempty"`
298
299 Model SelectedModelType `json:"model" jsonschema:"required,description=The model type to use for this agent,enum=large,enum=small,default=large"`
300
301 // The available tools for the agent
302 // if this is nil, all tools are available
303 AllowedTools []string `json:"allowed_tools,omitempty"`
304
305 // this tells us which MCPs are available for this agent
306 // if this is empty all mcps are available
307 // the string array is the list of tools from the AllowedMCP the agent has available
308 // if the string array is nil, all tools from the AllowedMCP are available
309 AllowedMCP map[string][]string `json:"allowed_mcp,omitempty"`
310
311 // Overrides the context paths for this agent
312 ContextPaths []string `json:"context_paths,omitempty"`
313}
314
315type Tools struct {
316 Ls ToolLs `json:"ls,omitzero"`
317 Bash ToolBash `json:"bash,omitzero"`
318}
319
320type ToolLs struct {
321 MaxDepth *int `json:"max_depth,omitempty" jsonschema:"description=Maximum depth for the ls tool,default=0,example=10"`
322 MaxItems *int `json:"max_items,omitempty" jsonschema:"description=Maximum number of items to return for the ls tool,default=1000,example=100"`
323}
324
325type ToolBash struct {
326 DisableDefaultCommands bool `json:"disable_banned_defaults,omitempty"`
327 BannedCommands []string `json:"banned_commands,omitempty"`
328 DisableDefaultSubCommands bool `json:"disable_banned_sub_command_defaults,omitempty"`
329 BannedSubCommands []BannedToolArgsAndOrParams `json:"banned_sub_commands,omitempty"`
330}
331
332type BannedToolArgsAndOrParams struct {
333 Command string `json:"command"`
334 Args []string `json:"args"`
335 Flags []string `json:"flags"`
336}
337
338func (t ToolLs) Limits() (depth, items int) {
339 return ptrValOr(t.MaxDepth, 0), ptrValOr(t.MaxItems, 0)
340}
341
342// Config holds the configuration for crush.
343type Config struct {
344 Schema string `json:"$schema,omitempty"`
345
346 // We currently only support large/small as values here.
347 Models map[SelectedModelType]SelectedModel `json:"models,omitempty" jsonschema:"description=Model configurations for different model types,example={\"large\":{\"model\":\"gpt-4o\",\"provider\":\"openai\"}}"`
348 // Recently used models stored in the data directory config.
349 RecentModels map[SelectedModelType][]SelectedModel `json:"recent_models,omitempty" jsonschema:"description=Recently used models sorted by most recent first"`
350
351 // The providers that are configured
352 Providers *csync.Map[string, ProviderConfig] `json:"providers,omitempty" jsonschema:"description=AI provider configurations"`
353
354 MCP MCPs `json:"mcp,omitempty" jsonschema:"description=Model Context Protocol server configurations"`
355
356 LSP LSPs `json:"lsp,omitempty" jsonschema:"description=Language Server Protocol configurations"`
357
358 Options *Options `json:"options,omitempty" jsonschema:"description=General application options"`
359
360 Permissions *Permissions `json:"permissions,omitempty" jsonschema:"description=Permission settings for tool usage"`
361
362 Tools Tools `json:"tools,omitzero" jsonschema:"description=Tool configurations"`
363
364 Agents map[string]Agent `json:"-"`
365
366 // Internal
367 workingDir string `json:"-"`
368 // TODO: find a better way to do this this should probably not be part of the config
369 resolver VariableResolver
370 dataConfigDir string `json:"-"`
371 knownProviders []catwalk.Provider `json:"-"`
372}
373
374func (c *Config) WorkingDir() string {
375 return c.workingDir
376}
377
378func (c *Config) EnabledProviders() []ProviderConfig {
379 var enabled []ProviderConfig
380 for p := range c.Providers.Seq() {
381 if !p.Disable {
382 enabled = append(enabled, p)
383 }
384 }
385 return enabled
386}
387
388// IsConfigured return true if at least one provider is configured
389func (c *Config) IsConfigured() bool {
390 return len(c.EnabledProviders()) > 0
391}
392
393func (c *Config) GetModel(provider, model string) *catwalk.Model {
394 if providerConfig, ok := c.Providers.Get(provider); ok {
395 for _, m := range providerConfig.Models {
396 if m.ID == model {
397 return &m
398 }
399 }
400 }
401 return nil
402}
403
404func (c *Config) GetProviderForModel(modelType SelectedModelType) *ProviderConfig {
405 model, ok := c.Models[modelType]
406 if !ok {
407 return nil
408 }
409 if providerConfig, ok := c.Providers.Get(model.Provider); ok {
410 return &providerConfig
411 }
412 return nil
413}
414
415func (c *Config) GetModelByType(modelType SelectedModelType) *catwalk.Model {
416 model, ok := c.Models[modelType]
417 if !ok {
418 return nil
419 }
420 return c.GetModel(model.Provider, model.Model)
421}
422
423func (c *Config) LargeModel() *catwalk.Model {
424 model, ok := c.Models[SelectedModelTypeLarge]
425 if !ok {
426 return nil
427 }
428 return c.GetModel(model.Provider, model.Model)
429}
430
431func (c *Config) SmallModel() *catwalk.Model {
432 model, ok := c.Models[SelectedModelTypeSmall]
433 if !ok {
434 return nil
435 }
436 return c.GetModel(model.Provider, model.Model)
437}
438
439func (c *Config) SetCompactMode(enabled bool) error {
440 if c.Options == nil {
441 c.Options = &Options{}
442 }
443 c.Options.TUI.CompactMode = enabled
444 return c.SetConfigField("options.tui.compact_mode", enabled)
445}
446
447func (c *Config) Resolve(key string) (string, error) {
448 if c.resolver == nil {
449 return "", fmt.Errorf("no variable resolver configured")
450 }
451 return c.resolver.ResolveValue(key)
452}
453
454func (c *Config) UpdatePreferredModel(modelType SelectedModelType, model SelectedModel) error {
455 c.Models[modelType] = model
456 if err := c.SetConfigField(fmt.Sprintf("models.%s", modelType), model); err != nil {
457 return fmt.Errorf("failed to update preferred model: %w", err)
458 }
459 if err := c.recordRecentModel(modelType, model); err != nil {
460 return err
461 }
462 return nil
463}
464
465func (c *Config) SetConfigField(key string, value any) error {
466 // read the data
467 data, err := os.ReadFile(c.dataConfigDir)
468 if err != nil {
469 if os.IsNotExist(err) {
470 data = []byte("{}")
471 } else {
472 return fmt.Errorf("failed to read config file: %w", err)
473 }
474 }
475
476 newValue, err := sjson.Set(string(data), key, value)
477 if err != nil {
478 return fmt.Errorf("failed to set config field %s: %w", key, err)
479 }
480 if err := os.WriteFile(c.dataConfigDir, []byte(newValue), 0o600); err != nil {
481 return fmt.Errorf("failed to write config file: %w", err)
482 }
483 return nil
484}
485
486func (c *Config) RefreshOAuthToken(ctx context.Context, providerID string) error {
487 providerConfig, exists := c.Providers.Get(providerID)
488 if !exists {
489 return fmt.Errorf("provider %s not found", providerID)
490 }
491
492 if providerConfig.OAuthToken == nil {
493 return fmt.Errorf("provider %s does not have an OAuth token", providerID)
494 }
495
496 // Only Anthropic provider uses OAuth for now
497 if providerID != string(catwalk.InferenceProviderAnthropic) {
498 return fmt.Errorf("OAuth refresh not supported for provider %s", providerID)
499 }
500
501 newToken, err := claude.RefreshToken(ctx, providerConfig.OAuthToken.RefreshToken)
502 if err != nil {
503 return fmt.Errorf("failed to refresh OAuth token for provider %s: %w", providerID, err)
504 }
505
506 slog.Info("Successfully refreshed OAuth token in background", "provider", providerID)
507 providerConfig.OAuthToken = newToken
508 providerConfig.APIKey = fmt.Sprintf("Bearer %s", newToken.AccessToken)
509 providerConfig.SetupClaudeCode()
510
511 c.Providers.Set(providerID, providerConfig)
512
513 if err := cmp.Or(
514 c.SetConfigField(fmt.Sprintf("providers.%s.api_key", providerID), newToken.AccessToken),
515 c.SetConfigField(fmt.Sprintf("providers.%s.oauth", providerID), newToken),
516 ); err != nil {
517 return fmt.Errorf("failed to persist refreshed token: %w", err)
518 }
519
520 return nil
521}
522
523func (c *Config) SetProviderAPIKey(providerID string, apiKey any) error {
524 var providerConfig ProviderConfig
525 var exists bool
526 var setKeyOrToken func()
527
528 switch v := apiKey.(type) {
529 case string:
530 if err := c.SetConfigField(fmt.Sprintf("providers.%s.api_key", providerID), v); err != nil {
531 return fmt.Errorf("failed to save api key to config file: %w", err)
532 }
533 setKeyOrToken = func() { providerConfig.APIKey = v }
534 case *oauth.Token:
535 if err := cmp.Or(
536 c.SetConfigField(fmt.Sprintf("providers.%s.api_key", providerID), v.AccessToken),
537 c.SetConfigField(fmt.Sprintf("providers.%s.oauth", providerID), v),
538 ); err != nil {
539 return err
540 }
541 setKeyOrToken = func() {
542 providerConfig.APIKey = v.AccessToken
543 providerConfig.OAuthToken = v
544 providerConfig.SetupClaudeCode()
545 }
546 }
547
548 providerConfig, exists = c.Providers.Get(providerID)
549 if exists {
550 setKeyOrToken()
551 c.Providers.Set(providerID, providerConfig)
552 return nil
553 }
554
555 var foundProvider *catwalk.Provider
556 for _, p := range c.knownProviders {
557 if string(p.ID) == providerID {
558 foundProvider = &p
559 break
560 }
561 }
562
563 if foundProvider != nil {
564 // Create new provider config based on known provider
565 providerConfig = ProviderConfig{
566 ID: providerID,
567 Name: foundProvider.Name,
568 BaseURL: foundProvider.APIEndpoint,
569 Type: foundProvider.Type,
570 Disable: false,
571 ExtraHeaders: make(map[string]string),
572 ExtraParams: make(map[string]string),
573 Models: foundProvider.Models,
574 }
575 setKeyOrToken()
576 } else {
577 return fmt.Errorf("provider with ID %s not found in known providers", providerID)
578 }
579 // Store the updated provider config
580 c.Providers.Set(providerID, providerConfig)
581 return nil
582}
583
584const maxRecentModelsPerType = 5
585
586func (c *Config) recordRecentModel(modelType SelectedModelType, model SelectedModel) error {
587 if model.Provider == "" || model.Model == "" {
588 return nil
589 }
590
591 if c.RecentModels == nil {
592 c.RecentModels = make(map[SelectedModelType][]SelectedModel)
593 }
594
595 eq := func(a, b SelectedModel) bool {
596 return a.Provider == b.Provider && a.Model == b.Model
597 }
598
599 entry := SelectedModel{
600 Provider: model.Provider,
601 Model: model.Model,
602 }
603
604 current := c.RecentModels[modelType]
605 withoutCurrent := slices.DeleteFunc(slices.Clone(current), func(existing SelectedModel) bool {
606 return eq(existing, entry)
607 })
608
609 updated := append([]SelectedModel{entry}, withoutCurrent...)
610 if len(updated) > maxRecentModelsPerType {
611 updated = updated[:maxRecentModelsPerType]
612 }
613
614 if slices.EqualFunc(current, updated, eq) {
615 return nil
616 }
617
618 c.RecentModels[modelType] = updated
619
620 if err := c.SetConfigField(fmt.Sprintf("recent_models.%s", modelType), updated); err != nil {
621 return fmt.Errorf("failed to persist recent models: %w", err)
622 }
623
624 return nil
625}
626
627func allToolNames() []string {
628 return []string{
629 "agent",
630 "bash",
631 "job_output",
632 "job_kill",
633 "download",
634 "edit",
635 "multiedit",
636 "lsp_diagnostics",
637 "lsp_references",
638 "fetch",
639 "agentic_fetch",
640 "glob",
641 "grep",
642 "ls",
643 "sourcegraph",
644 "view",
645 "write",
646 }
647}
648
649func resolveAllowedTools(allTools []string, disabledTools []string) []string {
650 if disabledTools == nil {
651 return allTools
652 }
653 // filter out disabled tools (exclude mode)
654 return filterSlice(allTools, disabledTools, false)
655}
656
657func resolveReadOnlyTools(tools []string) []string {
658 readOnlyTools := []string{"glob", "grep", "ls", "sourcegraph", "view"}
659 // filter to only include tools that are in allowedtools (include mode)
660 return filterSlice(tools, readOnlyTools, true)
661}
662
663func filterSlice(data []string, mask []string, include bool) []string {
664 filtered := []string{}
665 for _, s := range data {
666 // if include is true, we include items that ARE in the mask
667 // if include is false, we include items that are NOT in the mask
668 if include == slices.Contains(mask, s) {
669 filtered = append(filtered, s)
670 }
671 }
672 return filtered
673}
674
675func (c *Config) SetupAgents() {
676 allowedTools := resolveAllowedTools(allToolNames(), c.Options.DisabledTools)
677
678 agents := map[string]Agent{
679 AgentCoder: {
680 ID: AgentCoder,
681 Name: "Coder",
682 Description: "An agent that helps with executing coding tasks.",
683 Model: SelectedModelTypeLarge,
684 ContextPaths: c.Options.ContextPaths,
685 AllowedTools: allowedTools,
686 },
687
688 AgentTask: {
689 ID: AgentCoder,
690 Name: "Task",
691 Description: "An agent that helps with searching for context and finding implementation details.",
692 Model: SelectedModelTypeLarge,
693 ContextPaths: c.Options.ContextPaths,
694 AllowedTools: resolveReadOnlyTools(allowedTools),
695 // NO MCPs or LSPs by default
696 AllowedMCP: map[string][]string{},
697 },
698 }
699 c.Agents = agents
700}
701
702func (c *Config) Resolver() VariableResolver {
703 return c.resolver
704}
705
706func (c *ProviderConfig) TestConnection(resolver VariableResolver) error {
707 testURL := ""
708 headers := make(map[string]string)
709 apiKey, _ := resolver.ResolveValue(c.APIKey)
710 switch c.Type {
711 case catwalk.TypeOpenAI, catwalk.TypeOpenAICompat, catwalk.TypeOpenRouter:
712 baseURL, _ := resolver.ResolveValue(c.BaseURL)
713 if baseURL == "" {
714 baseURL = "https://api.openai.com/v1"
715 }
716 if c.ID == string(catwalk.InferenceProviderOpenRouter) {
717 testURL = baseURL + "/credits"
718 } else {
719 testURL = baseURL + "/models"
720 }
721 headers["Authorization"] = "Bearer " + apiKey
722 case catwalk.TypeAnthropic:
723 baseURL, _ := resolver.ResolveValue(c.BaseURL)
724 if baseURL == "" {
725 baseURL = "https://api.anthropic.com/v1"
726 }
727 testURL = baseURL + "/models"
728 // TODO: replace with const when catwalk is released
729 if c.ID == "kimi-coding" {
730 testURL = baseURL + "/v1/models"
731 }
732 headers["x-api-key"] = apiKey
733 headers["anthropic-version"] = "2023-06-01"
734 case catwalk.TypeGoogle:
735 baseURL, _ := resolver.ResolveValue(c.BaseURL)
736 if baseURL == "" {
737 baseURL = "https://generativelanguage.googleapis.com"
738 }
739 testURL = baseURL + "/v1beta/models?key=" + url.QueryEscape(apiKey)
740 }
741 ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
742 defer cancel()
743 client := &http.Client{}
744 req, err := http.NewRequestWithContext(ctx, "GET", testURL, nil)
745 if err != nil {
746 return fmt.Errorf("failed to create request for provider %s: %w", c.ID, err)
747 }
748 for k, v := range headers {
749 req.Header.Set(k, v)
750 }
751 for k, v := range c.ExtraHeaders {
752 req.Header.Set(k, v)
753 }
754 b, err := client.Do(req)
755 if err != nil {
756 return fmt.Errorf("failed to create request for provider %s: %w", c.ID, err)
757 }
758 if c.ID == string(catwalk.InferenceProviderZAI) {
759 if b.StatusCode == http.StatusUnauthorized {
760 // for z.ai just check if the http response is not 401
761 return fmt.Errorf("failed to connect to provider %s: %s", c.ID, b.Status)
762 }
763 } else {
764 if b.StatusCode != http.StatusOK {
765 return fmt.Errorf("failed to connect to provider %s: %s", c.ID, b.Status)
766 }
767 }
768 _ = b.Body.Close()
769 return nil
770}
771
772func resolveEnvs(envs map[string]string) []string {
773 resolver := NewShellVariableResolver(env.New())
774 for e, v := range envs {
775 var err error
776 envs[e], err = resolver.ResolveValue(v)
777 if err != nil {
778 slog.Error("error resolving environment variable", "error", err, "variable", e, "value", v)
779 continue
780 }
781 }
782
783 res := make([]string, 0, len(envs))
784 for k, v := range envs {
785 res = append(res, fmt.Sprintf("%s=%s", k, v))
786 }
787 return res
788}
789
790func ptrValOr[T any](t *T, el T) T {
791 if t == nil {
792 return el
793 }
794 return *t
795}