We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b96cf2 commit b27aa70Copy full SHA for b27aa70
1 file changed
app/AgentSquad/Providers/LlmsProvider.php
@@ -56,7 +56,7 @@ public static function provide(string|array $messages, ?string $model = null, in
56
private static function callDeepInfra(array $messages, string $model, int $timeoutInSeconds = 60): array
57
{
58
return self::post(
59
- config('towerify.deepinfra.api') . '/chat/completions', config('towerify.deepinfra.api_key', 'fake_bearer'), $messages, $model, $timeoutInSeconds);
+ config('towerify.deepinfra.api') . '/chat/completions', config('towerify.deepinfra.api_key'), $messages, $model, $timeoutInSeconds);
60
}
61
62
private static function post(string $url, string $bearer, array $messages, string $model, int $timeoutInSeconds = 60): array
0 commit comments