Skip to content

Commit

Permalink
chore : version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LordPax committed Sep 22, 2024
1 parent 2255dd3 commit 93a0e4a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [Unreleased]
## [0.1.0] - 2024-09-22

### Added

Expand Down
8 changes: 6 additions & 2 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var home, _ = os.UserHomeDir()

var (
NAME = "aicli"
VERSION = "1.0.0"
VERSION = "0.1.0"
CONFIG_DIR = path.Join(home, ".config", "aicli")
CONFIG_FILE = path.Join(CONFIG_DIR, "config.ini")
LOG_FILE = path.Join(CONFIG_DIR, "log")
Expand All @@ -25,7 +25,11 @@ var (
type=openai
model=gpt-4
apiKey=yoursecretapikey
temp=0.7`
temp=0.7
[translate]
type=deepl
apiKey=yoursecretapikey`
)

func InitConfig() error {
Expand Down

0 comments on commit 93a0e4a

Please sign in to comment.