Skip to content

Commit

Permalink
fix thread bug
Browse files Browse the repository at this point in the history
  • Loading branch information
alnutile committed Oct 9, 2024
1 parent 2ac5976 commit 6a1eddb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/Services/LlmServices/BaseClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ public function modifyPayload(array $payload, bool $noTools = false): array
}

put_fixture('claude_payload.json', $payload);

return $payload;
}

Expand Down
2 changes: 1 addition & 1 deletion app/Services/LlmServices/Orchestration/Orchestrate.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public function handle(Project $project,
}

Log::info('Orchestration Tools Found', [
'tool_calls' => count($response->tool_calls)
'tool_calls' => count($response->tool_calls),
]);

if (! empty($response->tool_calls)) {
Expand Down

0 comments on commit 6a1eddb

Please sign in to comment.