Skip to content

Commit af47cd1

Browse files
committed
add deployment_environment
1 parent ac0b0eb commit af47cd1

File tree

4 files changed

+8
-1
lines changed

4 files changed

+8
-1
lines changed

charts/memobase/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ sources:
66
- https://github.com/memodb-io/memobase
77
- https://github.com/memodb-io/memobase-helm
88
type: application
9-
version: 0.0.17
9+
version: 0.0.18
1010
appVersion: 0.0.36

charts/memobase/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ llm_api_key and embedding_api_key (if enable_event_embedding is true) are requir
105105
| core.config.best_llm_model | string | `"gpt-4o-mini"` | |
106106
| core.config.buffer_flush_interval | int | `3600` | |
107107
| core.config.cache_user_profiles_ttl | int | `1200` | |
108+
| core.config.deployment_environment | string | `"local"` | |
108109
| core.config.embedding_api_key | string | `""` | |
109110
| core.config.embedding_base_url | string | `""` | |
110111
| core.config.embedding_dim | int | `1536` | |

charts/memobase/templates/configmap.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,3 +150,7 @@ data:
150150
- {{ . | quote }}
151151
{{- end }}
152152
{{- end }}
153+
154+
{{- if .Values.core.config.deployment_environment }}
155+
deployment_environment: {{ .Values.core.config.deployment_environment | quote }}
156+
{{- end }}

charts/memobase/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ core:
6565
enable_event_summary: true
6666
minimum_chats_token_size_for_event_summary: 256
6767
event_tags: []
68+
69+
deployment_environment: "local"
6870
prometheus:
6971
enabled: false
7072
resources:

0 commit comments

Comments
 (0)