Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Yaliang Wu <[email protected]>
  • Loading branch information
ylwu-amzn committed Nov 2, 2023
1 parent 3f4c569 commit bac9410
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class CatIndexTool implements Tool {

@Setter @Getter
private String alias;
private static String DEFAULT_DESCRIPTION = "User this tool to get index information.";
private static String DEFAULT_DESCRIPTION = "Use this tool to get index information.";
@Getter @Setter
private String description = DEFAULT_DESCRIPTION;
private Client client;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class MLModelTool implements Tool {

@Setter @Getter
private String alias;
private static String DEFAULT_DESCRIPTION = "User this tool to run any model.";
private static String DEFAULT_DESCRIPTION = "Use this tool to run any model.";
@Getter @Setter
private String description = DEFAULT_DESCRIPTION;
private Client client;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class PainlessScriptTool implements Tool {

@Setter @Getter
private String alias;
private static String DEFAULT_DESCRIPTION = "User this tool to get index information.";
private static String DEFAULT_DESCRIPTION = "Use this tool to get index information.";
@Getter @Setter
private String description = DEFAULT_DESCRIPTION;
private Client client;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class VectorDBTool implements Tool {
public static final String NAME = "VectorDBTool";
@Setter @Getter
private String alias;
private static String DEFAULT_DESCRIPTION = "Useful for when need to search my data in OpenSearch index.";
private static String DEFAULT_DESCRIPTION = "Use this tool to search data in OpenSearch index.";
@Getter @Setter
private String description = DEFAULT_DESCRIPTION;

Expand Down

0 comments on commit bac9410

Please sign in to comment.