mirror of
https://github.com/ddworken/hishtory.git
synced 2025-08-09 15:15:08 +02:00
Allow usage of OpenAI integration in offline mode for #220
Offline mode is more about disabling syncing, so it is reasonable to still allow AI completions if the user has explicitly turned it on.
This commit is contained in:
@ -602,6 +602,10 @@ func setup(userSecret string, isOffline bool) error {
|
||||
config.HighlightMatches = true
|
||||
config.AiCompletion = true
|
||||
config.IsOffline = isOffline
|
||||
if isOffline {
|
||||
// By default, offline mode disables AI completion. Users can still enable it if they want it. See #220.
|
||||
config.AiCompletion = false
|
||||
}
|
||||
config.EnablePresaving = true
|
||||
err := hctx.SetConfig(&config)
|
||||
if err != nil {
|
||||
|
Reference in New Issue
Block a user