From 1ae73fe0c059b70c8d4852fd1273ffbab51dc8e1 Mon Sep 17 00:00:00 2001 From: abdosql Date: Sun, 22 Sep 2024 20:28:37 +0200 Subject: [PATCH] Add recipe for saqqal/llm-integration-bundle --- .../1.0/config/packages/llm_integration.yaml | 4 ++++ saqqal/llm-integration-bundle/1.0/manifest.json | 12 ++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 saqqal/llm-integration-bundle/1.0/config/packages/llm_integration.yaml create mode 100644 saqqal/llm-integration-bundle/1.0/manifest.json diff --git a/saqqal/llm-integration-bundle/1.0/config/packages/llm_integration.yaml b/saqqal/llm-integration-bundle/1.0/config/packages/llm_integration.yaml new file mode 100644 index 000000000..aab14c477 --- /dev/null +++ b/saqqal/llm-integration-bundle/1.0/config/packages/llm_integration.yaml @@ -0,0 +1,4 @@ +llm_integration: + llm_provider: 'api_together' + llm_api_key: '%env(LLM_PROVIDER_API_KEY)%' + llm_model: '%env(LLM_MODEL)%' \ No newline at end of file diff --git a/saqqal/llm-integration-bundle/1.0/manifest.json b/saqqal/llm-integration-bundle/1.0/manifest.json new file mode 100644 index 000000000..422b694af --- /dev/null +++ b/saqqal/llm-integration-bundle/1.0/manifest.json @@ -0,0 +1,12 @@ +{ + "bundles": { + "Saqqal\\LlmIntegrationBundle\\LlmIntegrationBundle": ["all"] + }, + "copy-from-recipe": { + "config/packages/": "%CONFIG_DIR%/packages/" + }, + "env": { + "LLM_PROVIDER_API_KEY": "your_api_key_here", + "LLM_MODEL": "meta_llama_3_1_8b_instruct_turbo" + } +} \ No newline at end of file