Hello Alex,
I am having issues when I do a query using the Northwind. I received the error: Invalid URI: The format of the URI could not be determined.
I filled in the necessary parameters and installed the SDKs for .NET 8.0. I would also like to know about the OpenAI endpoint. Can I use a dummy URL for testing? Will the application only run on Azure?
My Settings
string openAIEndpoint = "https://localhost:7199/";
string openAIKey = "sk-proj-hsrnz__something;
string openAIDeploymentName = "testme";
AzureOpenAIClient aiClient = new(new Uri(openAIEndpoint), new AzureKeyCredential(openAIKey));
ChatClient chatClient = aiClient.GetChatClient("wolfo");
I would greatly appreciate your assistance. Thank you!
Jake Crisostomo