This commit is contained in:
Thorsten Sommer 2024-07-25 15:16:06 +02:00
parent e68bd4f574
commit a78c2c8dbc
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -97,7 +97,7 @@ public sealed class ProviderOpenAI() : BaseProvider("https://api.openai.com/v1/"
// Read the stream, line by line:
while(!streamReader.EndOfStream)
{
// Check if the token is cancelled:
// Check if the token is canceled:
if(token.IsCancellationRequested)
yield break;