Codeblaze.SemanticKernel
Codeblaze.SemanticKernel copied to clipboard
Some Cool Semantic Kernel Plugins
Hi there, Thanks so much for the connector. Please could you describe how to get message streaming working? I have set up the project accordingly and when attempting to stream...
hi i am getting method not found exception, can you please help and tell me what i am doing wrong System.MissingMethodException: 'Method not found: 'System.Collections.Generic.Dictionary`2 Microsoft.SemanticKernel.PromptExecutionSettings.get_ExtensionData()'.' ``` try { var...
Code: var llmEndPoint = "http://localhost:11434"; var llmUri = new Uri(llmEndPoint); var modelId = "phi3:medium"; var embedderModelId = "nomic-embed-text"; var builder = Kernel.CreateBuilder() .AddOpenAIChatCompletion(modelId, llmUri, null) .AddOllamaTextEmbeddingGeneration(embedderModelId, llmUri); builder.Services.AddTransient(); var kernel...
Hello I’m encountering an issue while using `Codeblaze.SemanticKernel.Connectors.Ollama version 1.3.1. My code is throwing a System.InvalidOperationException, indicating that the ITextEmbeddingGenerationService has not been registered. Here is a snippet of the...