-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.go
86 lines (72 loc) · 1.65 KB
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package main
import (
"fmt"
"github.com/go-yaml/yaml"
"io/ioutil"
"log"
"os"
"path/filepath"
)
type Config struct {
OpenAI struct {
APIKey string `yaml:"api_key"`
} `yaml:"openai"`
}
var homeDir, _ = os.UserHomeDir()
var configFilePath = filepath.Join(homeDir, "ai.yaml")
func getAPIKey() string {
apiKey := readAPIKey()
if apiKey == "" {
apiKey = initApiKey()
}
return apiKey
}
func readAPIKey() string {
// Check if the API key is set in the environment variable
envAPIKey := os.Getenv("OPENAI_API_KEY")
if envAPIKey != "" {
return envAPIKey
}
configFile, err := ioutil.ReadFile(configFilePath)
if err != nil {
return ""
}
var config Config
err = yaml.Unmarshal(configFile, &config)
if err != nil {
log.Fatalf("Error unmarshalling config file: %v", err)
}
return config.OpenAI.APIKey
}
func askAPIKey() string {
var apiKey string
fmt.Print("Enter your OpenAI API Key (configuration will be updated): ")
fmt.Scanln(&apiKey)
return apiKey
}
func writeAPIKey(apiKey string) {
config := Config{
OpenAI: struct {
APIKey string `yaml:"api_key"`
}{
APIKey: apiKey,
},
}
configData, err := yaml.Marshal(config)
if err != nil {
log.Fatalf("Error marshalling config data: %v", err)
}
err = ioutil.WriteFile(configFilePath, configData, 0644)
if err != nil {
log.Fatalf("Error writing config file: %v", err)
}
fmt.Printf("API key added to your %s\n", configFilePath)
}
func initApiKey() string {
fmt.Printf("Please provide your OpenAI API.\n"+
"- Through an environment variable: OPENAI_API_KEY\n"+
"- Through a configuration file: %s\n", configFilePath)
var apiKey = askAPIKey()
writeAPIKey(apiKey)
return apiKey
}