minor change

This commit is contained in:
Jicheng Lu 2025-08-06 22:53:12 -05:00
parent 97c26a167e
commit f82f36b9dd

View file

@ -2,7 +2,7 @@ namespace BotSharp.OpenAPI.ViewModels.Knowledges.Request;
public class QueryVectorDataRequest
{
public IEnumerable<string> Ids { get; set; } = [];
public List<string> Ids { get; set; } = [];
public bool WithVector { get; set; }
public bool WithPayload { get; set; }
}