Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions charts/deepgram-self-hosted/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),

## Unreleased

### Added

- Exposed the ability to add custom TOML sections in api.toml and engine.toml via `customToml`

## [0.18.1] - 2025-09-03

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ api:
memory: "8Gi"
cpu: "4000m"

# -- Custom TOML sections can be added here to extend api.toml
# customToml: |
# [custom_section]

engine:
affinity:
nodeAffinity:
Expand All @@ -95,6 +99,16 @@ engine:
concurrencyLimit:
activeRequests:

# -- Custom TOML sections can be added here to extend engine.toml
# customToml: |
# # Preload models on engine startup for faster initial requests
# # See https://deepgram.gitbook.io/help-center/how-can-i-pre-load-models-to-reduce-cold-start-latency
# [preload_models]
# models = [
# # Example model preload configuration:
# # { model = "general-nova-3", version = "2025-09-05.12808", language = "multi", format = false }
# ]

modelManager:
volumes:
aws:
Expand Down
4 changes: 4 additions & 0 deletions charts/deepgram-self-hosted/templates/api/api.config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,7 @@ data:
{{- end }}
{{- end }}
{{- end }}

{{- if .Values.api.customToml }}
{{ .Values.api.customToml | nindent 4 }}
{{- end }}
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,6 @@ data:
[half_precision]
state = "{{ .Values.engine.halfPrecision.state }}"

{{- if .Values.engine.customToml }}
{{ .Values.engine.customToml | nindent 4 }}
{{- end }}
Loading