-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Improve the getting started documentation for Copilot chat #1352
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Try starting from here: https://github.com/microsoft/semantic-kernel/tree/main/samples/dotnet/kernel-syntax-examples This sample may help get you moving in the right direction re embeddings: https://github.com/microsoft/semantic-kernel/blob/main/samples/dotnet/kernel-syntax-examples/Example15_MemorySkill.cs What you are referring to above is how to being running the KernelHttpServer which is an Azure Function that wraps the Kernel so that a web client can make use of it. |
Thank you for the reference. I started from Example38. I use VS2022. |
I realized that my problem was with the key: I used Azure OpenAI key instead of OpenAI key. So I replaced original code of instantiating kernel.
However, the same line: gives me now the exception: So, I am kinda lost... |
I've created an issue here in the docs repo that I'll be working on during the next sprint to improve the getting started documentation for Copilot chat. I'll also try to identify why you're running into the PineconeMemoryException. |
The docs for Chat Copilot have been updated. Let us know if the instructions are still not clear. |
I cloned the entire Semantic Kernel repository and here I read the following:
`Run func start --csharp from the command line. This will run the service API locally at http://localhost:7071.
Two endpoints will be exposed by the service API:
InvokeFunction: [POST] http://localhost:7071/api/skills/{skillName}/invoke/{functionName}
Ping: [GET] http://localhost:7071/api/ping`
I tried to run the "func start --csharp" on the command line but it cannot find it. It does not say from what folder path I should run it, or do I misunderstand the statement?
Anyway, how to I run this project? (I'm not a web developer)
Also, where do I find clear example of Embeddings + Vector DB usage in C# for a scenario of questioning large number of private documents?
The text was updated successfully, but these errors were encountered: