We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61a97c7 commit a2d9765Copy full SHA for a2d9765
app/prepdocs/PrepareDocs/Program.Clients.cs
@@ -170,7 +170,7 @@ private static Task<OpenAIClient> GetOpenAIClientAsync(AppOptions options) =>
170
if (!useAOAI)
171
{
172
var openAIApiKey = Environment.GetEnvironmentVariable("OPENAI_API_KEY");
173
- Console.WriteLine("useAOAI value is: " + useAOAI.ToString());
+ Console.WriteLine("useAOAI value is: " + useAOAI.ToString());
174
ArgumentNullException.ThrowIfNullOrEmpty(openAIApiKey);
175
s_openAIClient = new OpenAIClient(openAIApiKey);
176
}
0 commit comments