Files
rag-local/kb/consts/consts.go
T
2026-08-05 10:28:44 +08:00

18 lines
545 B
Go

package consts
// 向量与检索参数
const (
DefaultEmbeddingDim = 1024 // embedding 默认维度(未配置时)
VectorTopK = 20 // 向量检索召回数
FtsTopK = 20 // 全文检索召回数
HybridTopK = 10 // 混合检索融合后返回数
RrfK = 60 // RRF 融合常数
MaxChunkSize = 800 // 分块最大字数
ChunkOverlap = 100 // 分块重叠字数
ParsePollIntervalSeconds = 3 // 解析任务轮询间隔
EmbedBatchSize = 16 // 单次向量化请求的文本批量
)