Skip to content

Commit 82d9d15

Browse files
committed
version update
1 parent 0865abc commit 82d9d15

File tree

6 files changed

+75
-97
lines changed

6 files changed

+75
-97
lines changed

.github/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ ponder image "a ferocious cat with wings and fire"
7171
7272
Ponder
7373
GitHub: https://github.com/seemywingz/ponder
74-
App Version: v0.4.0
74+
App Version: v0.4.1
7575
7676
Ponder uses OpenAI's API to generate text responses to user input.
7777
Or whatever else you can think of. 🤔

cmd/root.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
)
1616

1717
var ponderMessages = []goai.Message{}
18-
var APP_VERSION = "v0.4.0"
18+
var APP_VERSION = "v0.4.1"
1919
var ai *goai.Client
2020

2121
var verbose,

files/config

-10
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,6 @@ openAI_chat_systemMessage: |
2323
You're designed to understand context, follow conversations, handle complex instructions, and learn from interactions.
2424
Your goal is to make the user's experience as seamless and productive as possible.
2525

26-
radio_notificationSound: "~/.ponder/audio/notify.mp3"
27-
28-
# radio_systemMessage: |
29-
# You are an AI ham radio operator.
30-
# Your call sign is WSCE496.
31-
# Use HAM radio appropriate etiquette.
32-
# Use the NATO phonetic alphabet when reciting letters, and numbers.
33-
# You are knowledgeable in all things radio and electronics.
34-
# When returning chat responses end all text output with '...'
35-
3626
discord_message_context_count: 15
3727
discord_bot_systemMessage: |
3828
You are Ponder.

helm/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: v0.3.0
18+
version: v0.4.1
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "v0.3.0"
24+
appVersion: "v0.4.1"

helm/values.development.yaml

+35-41
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,29 @@ fullnameOverride: ""
1515
app:
1616
name: ponder
1717
args:
18-
- discord-bot
19-
- --config
20-
- ./config
21-
- -v
18+
- discord-bot
19+
- --config
20+
- ./config
21+
- -v
2222
configData:
23-
openAI_endpoint: "https://api.openAI.com/v1/"
24-
openAI_image_downloadPath: "~/Ponder/Images/"
25-
openAI_image_size: "1024x1024"
23+
openAI_endpoint: "https://api.openai.com/v1/"
24+
2625
openAI_image_model: "dall-e-3"
26+
openAI_image_size: "1024x1024"
27+
openAI_image_downloadPath: "~/Ponder/Images/"
28+
29+
openAI_tts_model: "tts-1"
30+
openAI_tts_voice: "onyx"
31+
openAI_tts_speed: 1.0
32+
openAI_tts_responseFormat: "mp3"
33+
34+
openAI_chat_model: "gpt-4"
2735
openAI_topP: 0.1
2836
openAI_temperature: 0
2937
openAI_maxTokens: 999
3038
openAI_presencePenalty: 0.6
3139
openAI_frequencyPenalty: 0.0
32-
openAI_chat_model: "gpt-4"
33-
openAI_text_model: "text-davinci-003"
40+
3441
discord_message_context_count: 15
3542
discord_bot_systemMessage: |
3643
You are Ponder.
@@ -39,26 +46,16 @@ app:
3946
Ponder will not tolerate any form of harassment, bullying, or discrimination.
4047
If you have any questions or concerns, please let us know. Thank you for using Ponder!
4148
env:
42-
- name: OPENAI_API_KEY
43-
valueFrom:
44-
secretKeyRef:
45-
name: openai-api-key
46-
key: api-key
47-
- name: PRINTIFY_API_KEY
48-
valueFrom:
49-
secretKeyRef:
50-
name: printify-api-key
51-
key: api-key
52-
- name: DISCORD_API_KEY
53-
valueFrom:
54-
secretKeyRef:
55-
name: discord-api-key
56-
key: api-key
57-
- name: DISCORD_PUB_KEY
58-
valueFrom:
59-
secretKeyRef:
60-
name: discord-pub-key
61-
key: pub-key
49+
- name: OPENAI_API_KEY
50+
valueFrom:
51+
secretKeyRef:
52+
name: openai-api-key
53+
key: api-key
54+
- name: DISCORD_API_KEY
55+
valueFrom:
56+
secretKeyRef:
57+
name: discord-api-key
58+
key: api-key
6259

6360
service:
6461
type: ClusterIP
@@ -74,14 +71,14 @@ ingress:
7471
auth_request_set $token $upstream_http_x_auth_request_access_token;
7572
more_set_headers "Request-Id: $req_id";
7673
hosts:
77-
- host: discipuli.ai
78-
paths:
79-
- path: /
80-
pathType: Prefix
74+
- host: ponder-dev.livingroom.cloud
75+
paths:
76+
- path: /
77+
pathType: Prefix
8178
tls:
82-
- secretName: discipuli.ai-tls
83-
hosts:
84-
- discipuli.ai
79+
- secretName: ponder-dev-livingroom-cloud-tls
80+
hosts:
81+
- ponder-dev.livingroom.cloud
8582

8683
serviceAccount:
8784
create: false
@@ -90,14 +87,11 @@ serviceAccount:
9087

9188
podAnnotations: {}
9289

93-
podSecurityContext:
94-
{}
95-
# fsGroup: 2000
90+
podSecurityContext: {} # fsGroup: 2000
9691

9792
securityContext: {}
9893

99-
resources:
100-
{}
94+
resources: {}
10195
# We usually recommend not to specify default resources and to leave this as a conscious
10296
# choice for the user. This also increases chances charts run on environments with little
10397
# resources, such as Minikube. If you do want to specify resources, uncomment the following

helm/values.production.yaml

+36-42
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ replicaCount: 1
66
image:
77
repository: ghcr.io/seemywingz/ponder
88
pullPolicy: Always
9-
tag: v0.3.0
9+
tag: v0.4.1
1010

1111
imagePullSecrets: []
1212
nameOverride: ""
@@ -15,22 +15,29 @@ fullnameOverride: ""
1515
app:
1616
name: ponder
1717
args:
18-
- discord-bot
19-
- --config
20-
- ./config
21-
- -v
18+
- discord-bot
19+
- --config
20+
- ./config
21+
- -v
2222
configData:
23-
openAI_endpoint: "https://api.openAI.com/v1/"
24-
openAI_image_downloadPath: "~/Ponder/Images/"
25-
openAI_image_size: "1024x1024"
23+
openAI_endpoint: "https://api.openai.com/v1/"
24+
2625
openAI_image_model: "dall-e-3"
26+
openAI_image_size: "1024x1024"
27+
openAI_image_downloadPath: "~/Ponder/Images/"
28+
29+
openAI_tts_model: "tts-1"
30+
openAI_tts_voice: "onyx"
31+
openAI_tts_speed: 1.0
32+
openAI_tts_responseFormat: "mp3"
33+
34+
openAI_chat_model: "gpt-4"
2735
openAI_topP: 0.1
2836
openAI_temperature: 0
2937
openAI_maxTokens: 999
3038
openAI_presencePenalty: 0.6
3139
openAI_frequencyPenalty: 0.0
32-
openAI_chat_model: "gpt-4"
33-
openAI_text_model: "text-davinci-003"
40+
3441
discord_message_context_count: 15
3542
discord_bot_systemMessage: |
3643
You are Ponder.
@@ -39,26 +46,16 @@ app:
3946
Ponder will not tolerate any form of harassment, bullying, or discrimination.
4047
If you have any questions or concerns, please let us know. Thank you for using Ponder!
4148
env:
42-
- name: OPENAI_API_KEY
43-
valueFrom:
44-
secretKeyRef:
45-
name: openai-api-key
46-
key: api-key
47-
- name: PRINTIFY_API_KEY
48-
valueFrom:
49-
secretKeyRef:
50-
name: printify-api-key
51-
key: api-key
52-
- name: DISCORD_API_KEY
53-
valueFrom:
54-
secretKeyRef:
55-
name: discord-api-key
56-
key: api-key
57-
- name: DISCORD_PUB_KEY
58-
valueFrom:
59-
secretKeyRef:
60-
name: discord-pub-key
61-
key: pub-key
49+
- name: OPENAI_API_KEY
50+
valueFrom:
51+
secretKeyRef:
52+
name: openai-api-key
53+
key: api-key
54+
- name: DISCORD_API_KEY
55+
valueFrom:
56+
secretKeyRef:
57+
name: discord-api-key
58+
key: api-key
6259

6360
service:
6461
type: ClusterIP
@@ -74,14 +71,14 @@ ingress:
7471
auth_request_set $token $upstream_http_x_auth_request_access_token;
7572
more_set_headers "Request-Id: $req_id";
7673
hosts:
77-
- host: discipuli.ai
78-
paths:
79-
- path: /
80-
pathType: Prefix
74+
- host: ponder.livingroom.cloud
75+
paths:
76+
- path: /
77+
pathType: Prefix
8178
tls:
82-
- secretName: discipuli.ai-tls
83-
hosts:
84-
- discipuli.ai
79+
- secretName: ponder-livingroom-cloud-tls
80+
hosts:
81+
- ponder.livingroom.cloud
8582

8683
serviceAccount:
8784
create: false
@@ -90,14 +87,11 @@ serviceAccount:
9087

9188
podAnnotations: {}
9289

93-
podSecurityContext:
94-
{}
95-
# fsGroup: 2000
90+
podSecurityContext: {} # fsGroup: 2000
9691

9792
securityContext: {}
9893

99-
resources:
100-
{}
94+
resources: {}
10195
# We usually recommend not to specify default resources and to leave this as a conscious
10296
# choice for the user. This also increases chances charts run on environments with little
10397
# resources, such as Minikube. If you do want to specify resources, uncomment the following

0 commit comments

Comments
 (0)