From 2a347a874d5e42bfd8a7c247381f57b5d2a1a855 Mon Sep 17 00:00:00 2001 From: Christophe Jossart Date: Thu, 9 Apr 2026 18:56:42 +0200 Subject: [PATCH] [AiBundle] Add AmazeeAi recipe (#1517) * [AiBundle] add amazeeai platform recipe * [AiBundle] fix generic platform recipe * fix: platform version * fix: platform version * Revert "[AiBundle] fix generic platform recipe" This reverts commit 12102ea79b96fffefe3201942b8abee4d369bdf1. * Update symfony/ai-amazee-ai-platform/0.6/manifest.json Co-authored-by: Christopher Hertel * Update symfony/ai-amazee-ai-platform/0.6/manifest.json Co-authored-by: Christopher Hertel --------- Co-authored-by: Christopher Hertel --- .../0.6/config/packages/ai_amazeeai_platform.yaml | 5 +++++ symfony/ai-amazee-ai-platform/0.6/manifest.json | 9 +++++++++ 2 files changed, 14 insertions(+) create mode 100644 symfony/ai-amazee-ai-platform/0.6/config/packages/ai_amazeeai_platform.yaml create mode 100644 symfony/ai-amazee-ai-platform/0.6/manifest.json diff --git a/symfony/ai-amazee-ai-platform/0.6/config/packages/ai_amazeeai_platform.yaml b/symfony/ai-amazee-ai-platform/0.6/config/packages/ai_amazeeai_platform.yaml new file mode 100644 index 00000000..511bd9cc --- /dev/null +++ b/symfony/ai-amazee-ai-platform/0.6/config/packages/ai_amazeeai_platform.yaml @@ -0,0 +1,5 @@ +ai: + platform: + amazeeai: + base_url: '%env(AMAZEEAI_LLM_API_URL)%' + api_key: '%env(AMAZEEAI_LLM_KEY)%' diff --git a/symfony/ai-amazee-ai-platform/0.6/manifest.json b/symfony/ai-amazee-ai-platform/0.6/manifest.json new file mode 100644 index 00000000..c0b1d3a4 --- /dev/null +++ b/symfony/ai-amazee-ai-platform/0.6/manifest.json @@ -0,0 +1,9 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "#1": "AMAZEEAI_LLM_API_URL=https://llm.YOUR_REGION.amazee.ai", + "#2": "AMAZEEAI_LLM_KEY=CHANGE_ME" + } +}