-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathexample.env
More file actions
15 lines (15 loc) · 1.12 KB
/
Copy pathexample.env
File metadata and controls
15 lines (15 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
OPENAI_URL=https://api.openai.com/v1 #URL of an OPENAI api compatible provider
OPENAI_API_KEY=sk-...
TRANSCRIPTION_MODEL=whisper-1 # this model will be used to transcribe the audio to text
TEXT_MODEL=model # the model you want to use to create the recipe in json using the transcription result
MEALIE_URL=https://example.com # url of you mealie instance
EXTERNAL_MEALIE_URL=https://example.com # optional, this will be the url used when showing the result of the recipe, not needed if the MEALIE_URL is already a public accesible url
MEALIE_API_KEY=ey...
# Optionally specify yt-dlp version to use. Use "latest" or a release tag like "2025.11.01".
# If provided, the container will try to download yt-dlp at startup
YTDLP_VERSION=latest
MEALIE_GROUP_NAME=home # Optional, Mealie group name, defaults to "home"
EXTRA_PROMPT= # here you can type instructions for the model like for example unit conversion or translations, remove this if not used
COOKIES="NAME=VALUE" #Optional, cookies for yt-dlp requests, useful for protected content
LOCAL_TRANSCRIPTION_MODEL=Xenova/whisper-base
PORT=4000 # Optional, port to expose the app on, defaults to 4000