admin管理员组文章数量:1344916
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("Get all patient data")]
public async Task<string> GetAllPatientData()
{
var list = await DataService.GetAllPatientsAsync();
Console.WriteLine("Retrieving all patient information...");
if (list == null || !list.Any())
return string.Empty;
var stringBuilder = new StringBuilder();
bool isFirstPatient = true;
foreach (var patient in list)
{
// Add a period separator between patient records (except for the first one)
if (!isFirstPatient)
{
stringBuilder.Append('.');
}
else
{
isFirstPatient = false;
}
// Append patient data fields separated by semicolons
stringBuilder.Append(patient.PatientId.ToString());
stringBuilder.Append(';');
stringBuilder.Append(patient.GetPatientName());
stringBuilder.Append(';');
stringBuilder.Append(patient.DOB.ToString("yyyy-MM-dd"));
stringBuilder.Append(';');
stringBuilder.Append(patient.Gender);
stringBuilder.Append(';');
stringBuilder.Append(patient.Phone);
stringBuilder.Append(';');
stringBuilder.Append(patient.Email);
// Add any other patient fields you want to include
}
return stringBuilder.ToString();
}
This code works perfectly and I am able to query my database and ask questions like name of patients etc.
My question is, if I return List<Patient>
instead of the string that I have built separating each field by a ;
, should that work? Apparently the string approach works but returning a List
of Patients
type does not. And I have not found any answer to this in the docs.
Appreciate any help on this and how should such functions be implemented.
本文标签: Function call return types in Semantic KernelStack Overflow
版权声明:本文标题:Function call return types in Semantic Kernel - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743766983a2535403.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论