Skip to content

Commit ee38c77

Browse files
committed
-
1 parent a806b22 commit ee38c77

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/agent/src/Toolbox/Tool/Platform.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ public function __construct(
3434
}
3535

3636
/**
37-
* @param array<mixed>|string|object $input the input to pass to the platform
37+
* @param string $message the message to pass to the chain
3838
*/
39-
public function __invoke(array|string|object $input): string
39+
public function __invoke(string $message): string
4040
{
4141
return $this->platform->invoke(
4242
$this->model,
43-
$input,
43+
$message,
4444
$this->options,
4545
)->asText();
4646
}

0 commit comments

Comments
 (0)