2025-10-15 18:24:27 +00:00
|
|
|
using BotSharp.Abstraction.VectorStorage.Options;
|
2025-08-06 15:14:22 +00:00
|
|
|
|
|
|
|
|
namespace BotSharp.OpenAPI.ViewModels.Knowledges.Request;
|
|
|
|
|
|
|
|
|
|
public class CreateVectorCollectionIndexRequest
|
|
|
|
|
{
|
|
|
|
|
public IEnumerable<CreateVectorCollectionIndexOptions> Options { get; set; } = [];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class DeleteVectorCollectionIndexRequest
|
|
|
|
|
{
|
|
|
|
|
public IEnumerable<DeleteVectorCollectionIndexOptions> Options { get; set; } = [];
|
|
|
|
|
}
|