Class ChunkElastic

java.lang.Object
com.bytedesk.kbase.llm_chunk.ChunkElastic

public class ChunkElastic extends Object
Chunk实体的Elasticsearch版本 用于全文搜索
  • Field Details

    • uid

      private String uid
    • name

      @Field(type=Keyword) private String name
    • content

      @Field(type=Text, analyzer="ik_max_word", searchAnalyzer="ik_smart") private String content
    • type

      @Field(type=Keyword) private String type
    • tagList

      @Field(type=Keyword) private List<String> tagList
    • enabled

      @Field(type=Boolean) private Boolean enabled
    • startDate

      @Field(type=Date, format=date_hour_minute_second_millis) private LocalDateTime startDate
    • endDate

      @Field(type=Date, format=date_hour_minute_second_millis) private LocalDateTime endDate
    • docId

      @Field(type=Keyword) private String docId
    • fileUid

      @Field(type=Keyword) private String fileUid
    • categoryUid

      @Field(type=Keyword) private String categoryUid
    • kbaseUid

      @Field(type=Keyword) private String kbaseUid
  • Constructor Details

    • ChunkElastic

      public ChunkElastic()