update 2023-07-04 06:26:00

This commit is contained in:
Robot 2023-07-04 06:26:03 +02:00
parent 578bce0398
commit ffb790120f
Signed by: Robot
GPG Key ID: 14DECD44E7E1BB95
2 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ class Utilities implements ServiceProviderInterface
public function getHttp(Container $container): Http
{
return new Http(
Helper::getParams()->get('openai_token')
Helper::getParams()->get('openai_token'),
Helper::getParams()->get('openai_org_token')
);
}

View File

@ -55,7 +55,7 @@
public function getHttp(Container $container): Http
{
return new Http(
Helper::getParams()->get('openai_token')
Helper::getParams()->get('openai_token'),
Helper::getParams()->get('openai_org_token')
);
}