Skip to content

Commit 8eaaebf

Browse files
fix code style
1 parent 37c6bba commit 8eaaebf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/platform/src/Bridge/Ollama/OllamaResultConverter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ private function convertStream(ResponseInterface $result): \Generator
110110
if ($this->streamIsToolCall($data)) {
111111
$toolCalls = $this->convertStreamToToolCalls($toolCalls, $data);
112112
}
113-
113+
114114
if ([] !== $toolCalls && $this->isToolCallsStreamFinished($data)) {
115115
yield new ToolCallResult(...$toolCalls);
116116
}
@@ -150,7 +150,7 @@ private function streamIsToolCall(array $data): bool
150150
{
151151
return isset($data['message']['tool_calls']);
152152
}
153-
153+
154154
/**
155155
* @param array<string, mixed> $data^
156156
*/

0 commit comments

Comments
 (0)