Skip to content

Commit 9647e94

Browse files
rixafychr-hertel
authored andcommitted
docs: fix typo in README.md (#333)
1 parent 5fd754a commit 9647e94

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ $yourTool = new YourTool();
165165
$toolbox = Toolbox::create($yourTool);
166166
$toolProcessor = new AgentProcessor($toolbox);
167167

168-
$agent = new Agent($platform, $model, inputProcessor: [$toolProcessor], outputProcessor: [$toolProcessor]);
168+
$agent = new Agent($platform, $model, inputProcessors: [$toolProcessor], outputProcessors: [$toolProcessor]);
169169
```
170170

171171
Custom tools can basically be any class, but must configure by the `#[AsTool]` attribute.
@@ -178,7 +178,7 @@ final class CompanyName
178178
{
179179
public function __invoke(): string
180180
{
181-
return 'ACME Corp.'
181+
return 'ACME Corp.';
182182
}
183183
}
184184
```

0 commit comments

Comments
 (0)