Microsoft.SemanticKernel pckage source code does not match repo #3906
Closed
vgpro54321
started this conversation in
General
Replies: 1 comment
-
It looks like VS was pulling some obsolete nugets from cache. I cleared nuget cache and reinstalled to get the current version. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello All,
I am struggling to understand why the source code Visual Studio shows for package does not match repo main branch.
I installed Microsoft.SemanticKernel meta package 1.0.0-beta8 for .NET 6 project.
If I look at source code for KernelBuilder class using "Got to Implementation" in VS, I see code like this:
Build() method is declared returning IKernel:
public IKernel Build()
However, in repository main branch source code looks different and so does Build() method, returning Kernel class instead of IKernel.
Repository / main branch:
Build method:
public Kernel Build()
As a matter of fact, I am unable to find IKernel interface declaration in repo at all.
Why is there a difference? Am I using a wrong package or looking at wrong branch?
Beta Was this translation helpful? Give feedback.
All reactions