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

Commit e7889ee

Browse files
authored
chore: prepare with release 0.17 (#69)
1 parent 81beb5c commit e7889ee

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

composer.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,15 @@
77
{
88
"name": "Christopher Hertel",
99
"email": "[email protected]"
10+
},
11+
{
12+
"name": "Oskar Stark",
13+
"email": "[email protected]"
1014
}
1115
],
1216
"require": {
1317
"php": ">=8.2",
14-
"php-llm/llm-chain": "^0.16",
18+
"php-llm/llm-chain": "^0.17",
1519
"symfony/config": "^6.4 || ^7.0",
1620
"symfony/dependency-injection": "^6.4 || ^7.0",
1721
"symfony/framework-bundle": "^6.4 || ^7.0",

src/Resources/config/services.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@
77
use PhpLlm\LlmChain\Chain\StructuredOutput\ChainProcessor as StructureOutputProcessor;
88
use PhpLlm\LlmChain\Chain\StructuredOutput\ResponseFormatFactory;
99
use PhpLlm\LlmChain\Chain\StructuredOutput\ResponseFormatFactoryInterface;
10-
use PhpLlm\LlmChain\Chain\StructuredOutput\SchemaFactory;
1110
use PhpLlm\LlmChain\Chain\ToolBox\ChainProcessor as ToolProcessor;
12-
use PhpLlm\LlmChain\Chain\ToolBox\ParameterAnalyzer;
1311
use PhpLlm\LlmChain\Chain\ToolBox\ToolAnalyzer;
1412
use PhpLlm\LlmChain\Chain\ToolBox\ToolBox;
1513
use PhpLlm\LlmChain\Chain\ToolBox\ToolBoxInterface;
@@ -32,7 +30,6 @@
3230
// structured output
3331
->set(ResponseFormatFactory::class)
3432
->alias(ResponseFormatFactoryInterface::class, ResponseFormatFactory::class)
35-
->set(SchemaFactory::class)
3633
->set(StructureOutputProcessor::class)
3734
->tag('llm_chain.chain.input_processor')
3835
->tag('llm_chain.chain.output_processor')
@@ -52,7 +49,6 @@
5249
])
5350
->alias(ToolBoxInterface::class, ToolBox::class)
5451
->set(ToolAnalyzer::class)
55-
->set(ParameterAnalyzer::class)
5652
->set('llm_chain.tool.chain_processor.abstract')
5753
->class(ToolProcessor::class)
5854
->abstract()

0 commit comments

Comments
 (0)