mirror of
https://github.com/symfony/recipes-contrib.git
synced 2026-09-11 23:26:40 +03:00
Update Flex endpoint
This commit is contained in:
+1
-1
@@ -457,7 +457,7 @@ Additional recipes can be found on the [Main Recipes Repository](https://github.
|
||||
| [pentatrion/vite-bundle](https://packagist.org/packages/pentatrion/vite-bundle) | [6.5](pentatrion/vite-bundle/6.5) |
|
||||
| [php-amqplib/rabbitmq-bundle](https://packagist.org/packages/php-amqplib/rabbitmq-bundle) | [1.12](php-amqplib/rabbitmq-bundle/1.12) |
|
||||
| [php-http/httplug-bundle](https://packagist.org/packages/php-http/httplug-bundle) | [1.6](php-http/httplug-bundle/1.6) |
|
||||
| [php-llm/llm-chain-bundle](https://packagist.org/packages/php-llm/llm-chain-bundle) | [0.16](php-llm/llm-chain-bundle/0.16) |
|
||||
| [php-llm/llm-chain-bundle](https://packagist.org/packages/php-llm/llm-chain-bundle) | [0.19](php-llm/llm-chain-bundle/0.19) |
|
||||
| [php-translation/loco-adapter](https://packagist.org/packages/php-translation/loco-adapter) | [0.8](php-translation/loco-adapter/0.8) |
|
||||
| [php-translation/symfony-bundle](https://packagist.org/packages/php-translation/symfony-bundle) | [0.10](php-translation/symfony-bundle/0.10) |
|
||||
| [phpfastcache/phpfastcache-bundle](https://packagist.org/packages/phpfastcache/phpfastcache-bundle) | [3.0](phpfastcache/phpfastcache-bundle/3.0) |
|
||||
|
||||
@@ -0,0 +1,51 @@
|
||||
{
|
||||
"manifests": {
|
||||
"php-llm/llm-chain-bundle": {
|
||||
"manifest": {
|
||||
"bundles": {
|
||||
"PhpLlm\\LlmChainBundle\\LlmChainBundle": [
|
||||
"all"
|
||||
]
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
},
|
||||
"env": {
|
||||
"OPENAI_API_KEY": ""
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/llm_chain.yaml": {
|
||||
"contents": [
|
||||
"# config/packages/llm_chain.yaml",
|
||||
"services:",
|
||||
" _defaults:",
|
||||
" autowire: true",
|
||||
" autoconfigure: true",
|
||||
"",
|
||||
" PhpLlm\\LlmChain\\Chain\\Toolbox\\Tool\\Clock: null",
|
||||
"",
|
||||
"llm_chain:",
|
||||
" platform:",
|
||||
" openai:",
|
||||
" api_key: '%env(OPENAI_API_KEY)%'",
|
||||
"",
|
||||
" chain:",
|
||||
" default:",
|
||||
" platform: 'llm_chain.platform.openai'",
|
||||
" model:",
|
||||
" name: 'GPT'",
|
||||
" version: 'gpt-4o-mini'",
|
||||
" system_prompt: |",
|
||||
" You are a helpful assistant and you can provide the current date and time.",
|
||||
" tools:",
|
||||
" - 'PhpLlm\\LlmChain\\Chain\\Toolbox\\Tool\\Clock'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "263a721f850c6fba105567e27c3614b3b0475dbf"
|
||||
}
|
||||
}
|
||||
}
|
||||
+2
-1
@@ -1457,7 +1457,8 @@
|
||||
"1.6"
|
||||
],
|
||||
"php-llm/llm-chain-bundle": [
|
||||
"0.16"
|
||||
"0.16",
|
||||
"0.19"
|
||||
],
|
||||
"php-translation/loco-adapter": [
|
||||
"0.8"
|
||||
|
||||
@@ -0,0 +1,51 @@
|
||||
{
|
||||
"manifests": {
|
||||
"php-llm/llm-chain-bundle": {
|
||||
"manifest": {
|
||||
"bundles": {
|
||||
"PhpLlm\\LlmChainBundle\\LlmChainBundle": [
|
||||
"all"
|
||||
]
|
||||
},
|
||||
"copy-from-recipe": {
|
||||
"config/": "%CONFIG_DIR%/"
|
||||
},
|
||||
"env": {
|
||||
"OPENAI_API_KEY": ""
|
||||
}
|
||||
},
|
||||
"files": {
|
||||
"config/packages/llm_chain.yaml": {
|
||||
"contents": [
|
||||
"# config/packages/llm_chain.yaml",
|
||||
"services:",
|
||||
" _defaults:",
|
||||
" autowire: true",
|
||||
" autoconfigure: true",
|
||||
"",
|
||||
" PhpLlm\\LlmChain\\Chain\\Toolbox\\Tool\\Clock: null",
|
||||
"",
|
||||
"llm_chain:",
|
||||
" platform:",
|
||||
" openai:",
|
||||
" api_key: '%env(OPENAI_API_KEY)%'",
|
||||
"",
|
||||
" chain:",
|
||||
" default:",
|
||||
" platform: 'llm_chain.platform.openai'",
|
||||
" model:",
|
||||
" name: 'GPT'",
|
||||
" version: 'gpt-4o-mini'",
|
||||
" system_prompt: |",
|
||||
" You are a helpful assistant and you can provide the current date and time.",
|
||||
" tools:",
|
||||
" - 'PhpLlm\\LlmChain\\Chain\\Toolbox\\Tool\\Clock'",
|
||||
""
|
||||
],
|
||||
"executable": false
|
||||
}
|
||||
},
|
||||
"ref": "263a721f850c6fba105567e27c3614b3b0475dbf"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user