tablestore-java-mcp-server-rag/tablestore-mcp-server/src/main/java/com/alicloud/openservices/tablestore/sample/model/SearchKnowledgeQuery.java [21:27]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @JsonProperty(required = true, value = "query")
    @JsonPropertyDescription("describe what you're looking for, and the tool will return the most relevant documents")
    private String query;

    @JsonProperty(required = false, value = "size")
    @JsonPropertyDescription("the number of similar documents to be returned")
    private int size = 20;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tablestore-java-mcp-server/src/main/java/com/alicloud/openservices/tablestore/sample/model/QueryRequest.java [20:26]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @JsonProperty(required = true, value = "query")
    @JsonPropertyDescription("describe what you're looking for, and the tool will return the most relevant documents")
    private String query;

    @JsonProperty(required = false, value = "size")
    @JsonPropertyDescription("the number of similar documents to be returned")
    private int size = 20;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



