We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a806b22 commit ee38c77Copy full SHA for ee38c77
src/agent/src/Toolbox/Tool/Platform.php
@@ -34,13 +34,13 @@ public function __construct(
34
}
35
36
/**
37
- * @param array<mixed>|string|object $input the input to pass to the platform
+ * @param string $message the message to pass to the chain
38
*/
39
- public function __invoke(array|string|object $input): string
+ public function __invoke(string $message): string
40
{
41
return $this->platform->invoke(
42
$this->model,
43
- $input,
+ $message,
44
$this->options,
45
)->asText();
46
0 commit comments