summaryrefslogtreecommitdiff
path: root/internal/appconfig
diff options
context:
space:
mode:
Diffstat (limited to 'internal/appconfig')
-rw-r--r--internal/appconfig/config.go16
1 files changed, 8 insertions, 8 deletions
diff --git a/internal/appconfig/config.go b/internal/appconfig/config.go
index 7076862..c5166a0 100644
--- a/internal/appconfig/config.go
+++ b/internal/appconfig/config.go
@@ -13,14 +13,14 @@ import (
// App holds user-configurable settings read from ~/.config/hexai/config.json.
type App struct {
- MaxTokens int `json:"max_tokens"`
- ContextMode string `json:"context_mode"`
- ContextWindowLines int `json:"context_window_lines"`
- MaxContextTokens int `json:"max_context_tokens"`
- LogPreviewLimit int `json:"log_preview_limit"`
-
- TriggerCharacters []string `json:"trigger_characters"`
- Provider string `json:"provider"`
+ MaxTokens int `json:"max_tokens"`
+ ContextMode string `json:"context_mode"`
+ ContextWindowLines int `json:"context_window_lines"`
+ MaxContextTokens int `json:"max_context_tokens"`
+ LogPreviewLimit int `json:"log_preview_limit"`
+
+ TriggerCharacters []string `json:"trigger_characters"`
+ Provider string `json:"provider"`
// Provider-specific options
OpenAIBaseURL string `json:"openai_base_url"`