16 questions
0
votes
0
answers
281
views
Arguments Not Reaching Plugin Methods When Invoked via Kernel in Semantic Kernel (Python)
I'm working with the Python SDK of Microsoft Semantic Kernel and trying to invoke a plugin function with arguments using agent.invoke(messages, arguments). However, the arguments don't seem to be ...
0
votes
2
answers
347
views
Semantic Kernel plugin methods to return literal values without re-interpreting
I have a C# semantic kernel app that calls various plugin methods. Each method returns a string value. I would like for the app to return this exact string value to the user, but instead semantic ...
0
votes
0
answers
72
views
Unable to integrated Azure AI Studio "connected agents" with Azure Cosmos DB
I'm developing an agent using Azure AI Agent Service (via Azure AI Studio) and Python, following a "connected agents" pattern. My agent (CEOLogAgent) is designed to use a Semantic Kernel-...
1
vote
0
answers
169
views
Using semantic kernel with databricks models
I am currently trying to use semantic kernel with databricks hosted sonnet-3.7 model. And I faced with the problem, that when creating an agent with the plugins, the plugins are not executed. It seems ...
0
votes
0
answers
121
views
Function call return types in Semantic Kernel
I am using Microsoft Semantic Kernel and trying to retrieve data from my local database. I am using Ollama3.2 as my LLM.
In order to retrieve patient data, I have the following code:
[Description(&...
1
vote
1
answer
336
views
Unable to use SemanticKernel plugins with DeepSeek-R1 on Azure AI Foundry
I am trying to use Semantic Kernel plugins through OpenAI connector with DeepSeek-R1 deployed on Azure Foundry.
I can connect to the LLM and get responses.
But I can't leverage Semantic Kernel plugins....
0
votes
1
answer
653
views
C# app using latest Semantic Kernel Throws SSL error
I wrote a small C# app that uses the Microsoft Semantic Kernel nuget package that opens a console window and accepts lines of text, and submits them to the kernel/openai, and shows what the kernel ...
0
votes
2
answers
491
views
Passing request context from FastAPI to Microsoft Semantic Kernel Plugin for OpenAI Integration
I am integrating Microsoft Semantic Kernel with OpenAI in my FastAPI application. I have a chat/ endpoint where I receive a session_id from the request, and I need to pass this session_id to a plugin ...
1
vote
3
answers
1k
views
SemanticKernel with Plugin functions and vector database with C#
To start, I’d like to explain what I aim to achieve. My goal is to create an AI bot that will act as a hotel assistant, able to provide users with any hotel-related information they request. It should ...
4
votes
3
answers
2k
views
SemanticKernel function call with local LLM issue
I am trying to create my first demo AI project, and I would like to use Semantic Kernel to connect with my local hosted LLM and use function calls. I am getting responses from the LLM just fine, but I ...
1
vote
1
answer
3k
views
Call function with Semantic kernel and Ollama and llama3.1
This question is a continuation of Semantic Kernel plugin not working with ollama and phi3
Now that Ollama does support tools I have revisited my experiment.
I have stumbled on something I can't get ...
5
votes
4
answers
7k
views
Using a text embedding model locally with semantic kernel
I've been reading Stephen Toub's blog post about building a simple console-based .NET chat application from the ground up with semantic-kernel. I'm following the examples but instead of OpenAI I want ...
0
votes
1
answer
2k
views
How to make Semantic Kernel look up information on website?
I know that I can use the WebSearchEnginePlugin to make Semantic Kernel look up general information by using Fx the Bing or Google Connector like this:
kernel.ImportPluginFromObject(new ...
5
votes
1
answer
1k
views
Semantic Kernel plugin not working with ollama and phi3
Following this nice tutorial: https://laurentkempe.com/2024/05/01/run-phi-3-slm-on-your-machine-with-csharp-semantic-kernel-and-ollama/ I have set up my local model. And the chat part works just great....
0
votes
1
answer
198
views
where to specify a version number for openapi when calling external plugin using ImportPluginFromOpenApiAsync
I am trying to invoke semantic kernel plugin using OpenAPI call
var plugin = await kernel.ImportPluginFromOpenApiAsync(
name,
endpoint,
new OpenApiFunctionExecutionParameters(...
1
vote
1
answer
4k
views
Semantic-Kernel throwing error when calling local Plugin
I'm trying to follow Microsoft's example for calling a native plugin, albeit in a LinqPad script.
The Pluging I've added to my script is identical to the example here.
When I call it "directly&...