Skip to content
This repository was archived by the owner on Jul 16, 2025. It is now read-only.

Commit 346d0d0

Browse files
committed
chore: lib update
1 parent 48e1850 commit 346d0d0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
],
1616
"require": {
1717
"php": ">=8.2",
18-
"php-llm/llm-chain": "^0.17",
18+
"php-llm/llm-chain": "^0.18",
1919
"symfony/config": "^6.4 || ^7.0",
2020
"symfony/dependency-injection": "^6.4 || ^7.0",
2121
"symfony/framework-bundle": "^6.4 || ^7.0",

src/Resources/config/services.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use PhpLlm\LlmChain\Chain\StructuredOutput\ResponseFormatFactory;
99
use PhpLlm\LlmChain\Chain\StructuredOutput\ResponseFormatFactoryInterface;
1010
use PhpLlm\LlmChain\Chain\ToolBox\ChainProcessor as ToolProcessor;
11-
use PhpLlm\LlmChain\Chain\ToolBox\ToolAnalyzer;
11+
use PhpLlm\LlmChain\Chain\ToolBox\MetadataFactory\ReflectionFactory;
1212
use PhpLlm\LlmChain\Chain\ToolBox\ToolBox;
1313
use PhpLlm\LlmChain\Chain\ToolBox\ToolBoxInterface;
1414
use PhpLlm\LlmChain\Embedder;
@@ -48,7 +48,7 @@
4848
'$tools' => tagged_iterator('llm_chain.tool'),
4949
])
5050
->alias(ToolBoxInterface::class, ToolBox::class)
51-
->set(ToolAnalyzer::class)
51+
->set(ReflectionFactory::class)
5252
->set('llm_chain.tool.chain_processor.abstract')
5353
->class(ToolProcessor::class)
5454
->abstract()

0 commit comments

Comments
 (0)