This repository was archived by the owner on Jul 16, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change 88use PhpLlm \LlmChain \Chain \StructuredOutput \ResponseFormatFactory ;
99use PhpLlm \LlmChain \Chain \StructuredOutput \ResponseFormatFactoryInterface ;
1010use PhpLlm \LlmChain \Chain \ToolBox \ChainProcessor as ToolProcessor ;
11- use PhpLlm \LlmChain \Chain \ToolBox \ToolAnalyzer ;
11+ use PhpLlm \LlmChain \Chain \ToolBox \MetadataFactory ;
12+ use PhpLlm \LlmChain \Chain \ToolBox \MetadataFactory \ReflectionFactory ;
1213use PhpLlm \LlmChain \Chain \ToolBox \ToolBox ;
1314use PhpLlm \LlmChain \Chain \ToolBox \ToolBoxInterface ;
1415use PhpLlm \LlmChain \Embedder ;
4849 '$tools ' => tagged_iterator ('llm_chain.tool ' ),
4950 ])
5051 ->alias (ToolBoxInterface::class, ToolBox::class)
51- ->set (ToolAnalyzer::class)
52+ ->set (ReflectionFactory::class)
53+ ->alias (MetadataFactory::class, ReflectionFactory::class)
5254 ->set ('llm_chain.tool.chain_processor.abstract ' )
5355 ->class (ToolProcessor::class)
5456 ->abstract ()
You can’t perform that action at this time.
0 commit comments