From 9072a4b13857f9c97f629469be56bb8514653b61 Mon Sep 17 00:00:00 2001 From: Kevin Jayne Date: Thu, 30 Mar 2023 13:16:11 -0400 Subject: [PATCH] Release v0.0.0 (#30) * Release v0.0.0 --- .github/README.md | 6 +++--- cmd/root.go | 2 +- helm/Chart.yaml | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/README.md b/.github/README.md index 6f33c60..89de5ae 100644 --- a/.github/README.md +++ b/.github/README.md @@ -1,6 +1,6 @@ Ponder ------- -###### OpenAI Powerd Chat Tool +###### OpenAI Powered Chat Tool [![main](https://github.com/seemywingz/ponder/actions/workflows/dockerBuildX.yml/badge.svg?branch=main)](https://github.com/seemywingz/ponder/actions/workflows/dockerBuildX.yml) @@ -35,7 +35,7 @@ ponder chat --prompt "AI is Amazing" ### Docker #### Running ponder in docker is exactly the same, but you have to provide the env vars when running ```bash -docker run -e OPENAI_API_KEY=$OPENAI_API_KEY disciplesofai/ponder:latest chat --prompt "Ai is Amazing" +docker run -e OPENAI_API_KEY=$OPENAI_API_KEY ghcr.io/seemywingz/ponder:latest chat --prompt "Ai is Amazing" ``` #### Example Output ```bash @@ -76,7 +76,7 @@ ponder image -p "watercolor of a corgie" Ponder GitHub: https://github.com/seemywingz/ponder - App Version: v0.1.2 + App Version: v0.0.0 Ponder uses OpenAI's GPT-3.5-Turbo API to generate text responses to user input. You can use Ponder as a Discord chat bot or to generate images using the DALL-E API. diff --git a/cmd/root.go b/cmd/root.go index f633896..5527f3b 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -19,7 +19,7 @@ import ( ) var verbose bool -var APP_VERSION = "v0.1.2" +var APP_VERSION = "v0.0.0" var prompt, openAIUser, ponderID, diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 2c5d54c..76824f8 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: ponder -description: Discipuli AI API Server +description: OpenAI Powered Chat Tool # A chart can be either an 'application' or a 'library' chart. # @@ -15,10 +15,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.2 +version: v0.0.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.1.2" +appVersion: "v0.0.0"