From cdabe038b3bdd36fdbc5c449379972a7ada63c88 Mon Sep 17 00:00:00 2001 From: Lara Perinetti Date: Wed, 27 May 2026 10:09:17 +0200 Subject: [PATCH] feat: auto-populate MISTRAL_API_KEY from current shell environment Update copier.yml to use os.environ.get('MISTRAL_API_KEY', '') as the default value for mistral_api_key, so it automatically picks up the MISTRAL_API_KEY from the current shell if available. This matches the behavior in workflows-starter-app. Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe --- copier.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/copier.yml b/copier.yml index 7091ae1..4a33180 100644 --- a/copier.yml +++ b/copier.yml @@ -9,7 +9,7 @@ project_name: mistral_api_key: type: str secret: true - default: "" + default: "{{ os.environ.get('MISTRAL_API_KEY', '') }}" help: "Mistral API key" collection_name: