tablestore-java-mcp-server-rag/tablestore-mcp-server/src/main/java/com/alicloud/openservices/tablestore/sample/model/KnowledgeContent.java [24:30]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @JsonProperty(required = true, value = "content")
    @JsonPropertyDescription("a natural language document content")
    private String content = "";

    @JsonProperty(required = false, value = "meta_data")
    @JsonPropertyDescription("a Python dictionary with strings as keys, which can store some meta data related to this document")
    private Map<String, Object> metaData = new HashMap<>();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tablestore-java-mcp-server/src/main/java/com/alicloud/openservices/tablestore/sample/model/Entry.java [23:29]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @JsonProperty(required = true, value = "content")
    @JsonPropertyDescription("a natural language document content")
    private String content = "";

    @JsonProperty(required = false, value = "meta_data")
    @JsonPropertyDescription("a Python dictionary with strings as keys, which can store some meta data related to this document")
    private Map<String, Object> metaData = new HashMap<>();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



