Initial commit

This commit is contained in:
shiyu
2025-05-18 20:48:20 +08:00
commit cde2c7b997
79 changed files with 5713 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace Foxel.Models.Request.Picture;
public class SearchPicturesByTextRequest
{
public string Query { get; set; } = string.Empty;
public int Page { get; set; } = 1;
public int PageSize { get; set; } = 8;
public double SimilarityThreshold { get; set; } = 0.36;
}