Skip to content

Commit 462ce8b

Browse files
committed
Apply CS
1 parent e96754a commit 462ce8b

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

src/agent/src/Toolbox/StreamResult.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ public function getContent(): \Generator
6767
$streamedResult .= $value;
6868

6969
yield $value;
70-
7170
}
7271

7372
// Attach the metadata from the platform stream to the agent after the stream has been fully processed

src/platform/src/Bridge/OpenAi/Gpt/ResultConverter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
use Symfony\AI\Platform\Result\RawHttpResult;
2424
use Symfony\AI\Platform\Result\RawResultInterface;
2525
use Symfony\AI\Platform\Result\ResultInterface;
26-
use Symfony\AI\Platform\Result\TextChunk;
2726
use Symfony\AI\Platform\Result\StreamResult;
27+
use Symfony\AI\Platform\Result\TextChunk;
2828
use Symfony\AI\Platform\Result\TextResult;
2929
use Symfony\AI\Platform\Result\ToolCall;
3030
use Symfony\AI\Platform\Result\ToolCallResult;

src/platform/src/Result/TextChunk.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
*/
1717
final class TextChunk extends BaseResult implements \Stringable
1818
{
19-
/**
20-
* @param string $content
21-
*/
2219
public function __construct(
2320
private readonly string $content,
2421
) {

0 commit comments

Comments
 (0)