-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvalues.yaml
More file actions
252 lines (233 loc) · 6.33 KB
/
values.yaml
File metadata and controls
252 lines (233 loc) · 6.33 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
# Default values for audiomuse-ai.
fullnameOverride: ""
nameOverride: ""
namespace:
name: "default-audiomuse-ns" # Reverted to a sensible default, or "default"
# This is only used if --namespace is NOT specified
# during helm install.
image:
repository: ghcr.io/neptunehub/audiomuse-ai
pullPolicy: Always
# Overrides the image tag whose default is the chart's appVersion.
tag: ""
flask:
replicaCount: 1
service:
type: LoadBalancer
port: 8000
livenessProbe:
httpGet:
path: /
port: http
initialDelaySeconds: 15
periodSeconds: 20
readinessProbe:
httpGet:
path: /
port: http
initialDelaySeconds: 5
periodSeconds: 10
# nodeSelector: {}
worker:
replicaCount: 1
# livenessProbe: {}
# readinessProbe: {}
# nodeSelector: {}
redis:
# nodeSelector: {}
enabled: true
external:
url: "" # e.g. "redis://my-redis-cluster:6379/0"
image: "redis:7-alpine"
service:
port: 6379
resources: {}
# resources:
# requests:
# cpu: "200m"
# memory: "256Mi"
# limits:
# cpu: "1"
# memory: "512Mi"
postgres:
# nodeSelector: {}
enabled: true
external:
host: "" # e.g. "audiomuse-postgresql-rw" (CNPG rw service)
port: 5432
image: "postgres:15-alpine"
user: "audiomuse"
password: "audiomusepassword" # IMPORTANT: Change this for production or use --set
db: "audiomusedb"
aiChatDbUser: "ai_user"
aiChatDbUserPassword: "ChangeThisSecurePassword123!" # IMPORTANT: Change this for production or use --set
aiChatDbExistingSecret: "" # when set, skips creating the ai-chat-db Secret (must contain key: AI_CHAT_DB_USER_PASSWORD)
existingSecret: ""
existingSecretKeys:
user: "POSTGRES_USER"
password: "POSTGRES_PASSWORD"
db: "POSTGRES_DB"
service:
port: 5432
persistence:
enabled: true
size: 5Gi
# storageClassName: "your-storage-class" # Uncomment and specify if needed
resources: {}
# resources:
# requests:
# cpu: "250m"
# memory: "256Mi"
# limits:
# cpu: "1"
# memory: "2Gi"
# Credentials and external service configurations
# IMPORTANT: For production, manage these secrets securely, e.g., with Sealed Secrets or Vault.
jellyfin:
existingSecret: ""
userId: "YOUR_JELLYFIN_USER_ID" # IMPORTANT: Set to your Jellyfin user ID or use --set / existingSecret
token: "YOUR_JELLYFIN_TOKEN" # IMPORTANT: Set to your Jellyfin access token or use --set / existingSecret
url: "http://your_jellyfin_url:8096" # IMPORTANT: Set to your Jellyfin base URL
navidrome:
existingSecret: ""
user: "YOUR-USER"
password: "YOUR-PASSWORD"
url: "http://your_navidrome_url:4533"
lyrion:
existingSecret: ""
user: "YOUR-USER"
password: "YOUR-PASSWORD"
url: "http://YOUR-LYRION-URL"
openai:
existingSecret: ""
apiKey: "YOUR_OPENAI_API_KEY_HERE" # IMPORTANT: Change this for production or use --set
gemini:
existingSecret: ""
apiKey: "YOUR_GEMINI_API_KEY_HERE" # IMPORTANT: Change this for production or use --set
mistral:
existingSecret: ""
apiKey: "YOUR_MISTRAL_API_KEY_HERE" # IMPORTANT: Change this for production or use --set
auth:
enabled: true
user: ""
password: ""
apiToken: ""
existingSecret: ""
existingSecretKeys:
user: "AUDIOMUSE_USER"
password: "AUDIOMUSE_PASSWORD"
apiToken: "API_TOKEN"
# Application configuration parameters from config.py
config:
mediaServerType: "jellyfin"
tempDir: "/app/temp_audio"
maxDistance: 0.5
maxSongsPerCluster: 0
maxSongsPerArtist: 3
numRecentAlbums: 0
clusterAlgorithm: "kmeans"
aiModelProvider: "NONE"
enableClusteringEmbeddings: false
dbscanEpsMin: 0.1
dbscanEpsMax: 0.5
dbscanMinSamplesMin: 5
dbscanMinSamplesMax: 20
numClustersMin: 40
numClustersMax: 100
useMinibatchKmeans: true
minibatchKmeansProcessingBatchSize: 1000
gmmNComponentsMin: 40
gmmNComponentsMax: 100
gmmCovarianceType: "full"
pcaComponentsMin: 0
pcaComponentsMax: 8
clusteringRuns: 5000
maxQueuedAnalysisJobs: 100
iterationsPerBatchJob: 20
maxConcurrentBatchJobs: 10
dbFetchChunkSize: 1000
topNElites: 10
exploitationStartFraction: 0.2
exploitationProbability: 0.7
mutationIntAbsDelta: 3
mutationFloatAbsDelta: 0.05
mutationKmeansCoordFraction: 0.05
scoreWeightDiversity: 2.0
scoreWeightPurity: 1.0
scoreWeightOtherFeatureDiversity: 0.0
scoreWeightOtherFeaturePurity: 0.0
scoreWeightSilhouette: 0.0
scoreWeightDaviesBouldin: 0.0
scoreWeightCalinskiHarabasz: 0.0
topKMoodsForPurityCalculation: 3
lnMoodDiversityStats:
min: -0.1863
max: 1.5518
mean: 0.9995
sd: 0.3541
lnMoodDiversityEmbeddingStats:
min: -0.174
max: 0.570
mean: -0.101
sd: 0.245
lnMoodPurityStats:
min: 0.6981
max: 7.2848
mean: 5.8679
sd: 1.1557
lnMoodPurityEmbeddingStats:
min: -0.494
max: 2.583
mean: 0.673
sd: 1.063
lnOtherFeaturesDiversityStats:
min: -0.19
max: 2.06
mean: 1.5
sd: 0.46
lnOtherFeaturesPurityStats:
min: 8.67
max: 8.95
mean: 8.84
sd: 0.07
otherFeaturePredominanceThresholdForPurity: 0.3
ollamaServerUrl: "http://192.168.3.15:11434/api/generate"
ollamaModelName: "mistral:7b"
openaiServerUrl: "https://api.openai.com/v1/chat/completions"
openaiModelName: "gpt-5-mini"
geminiModelName: "gemini-1.5-flash-latest"
mistralModelName: "ministral-3b-latest"
aiChatDbUserName: "ai_user"
topNOtherFeatures: 2
energyMin: 0.01
energyMax: 0.15
tempoMinBpm: 40.0
tempoMaxBpm: 200.0
minSongsPerGenreForStratification: 100
stratifiedSamplingTargetPercentile: 50
samplingPercentageChangePerRun: 0.2
podSecurityContext:
runAsUser: 0
runAsGroup: 0
fsGroup: 0
containerSecurityContext:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: false # app writes to /app/temp_audio
runAsUser: 0
runAsGroup: 0
capabilities:
drop: ["ALL"]
ingress:
enabled: false
className: ""
annotations: {}
hosts:
- host: audiomuse.local
paths:
- path: /
pathType: Prefix
tls: []
serviceAccount:
create: false
name: ""
annotations: {}