Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
cetorres committed Aug 4, 2024
1 parent 5c25d4e commit c4a8049
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ $ ai-buddy --webui --port 8082
## Output

```
ai-buddy 1.1.6 - Created by Carlos E. Torres (https://github.com/cetorres)
ai-buddy 1.1.7 - Created by Carlos E. Torres (https://github.com/cetorres)
AI tool to help solving problems using prompt engineering from a set of crowdsourced AI prompts.
Example usage:
Expand Down
5 changes: 4 additions & 1 deletion commands/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,12 @@ import (
)

func HelpCommand() {
println(constants.DESCRIPTION)
print(constants.DESCRIPTION)
println()
conf := config.GetConfig()
if conf.GoogleAPIKey == "" || conf.OpenAIAPIKey == "" {
println()
}
if conf.GoogleAPIKey == "" {
util.PrintWarning("Google Gemini API key is missing.")
}
Expand Down
2 changes: 1 addition & 1 deletion constants/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package constants

import "fmt"

const APP_VERSION = "1.1.6"
const APP_VERSION = "1.1.7"
const OLLAMA_HOST_ENV = "OLLAMA_HOST"
const AI_BUDDY_SERVER_PORT = 8080
var TITLE = fmt.Sprintf("ai-buddy %s - Created by Carlos E. Torres (https://github.com/cetorres)", APP_VERSION)
Expand Down

0 comments on commit c4a8049

Please sign in to comment.