fix: change default of register in @GrowToolHint to true so tools are returned
All checks were successful
Deploy to OCIWP / deploy (push) Successful in 4m33s
All checks were successful
Deploy to OCIWP / deploy (push) Successful in 4m33s
This commit is contained in:
@@ -23,10 +23,23 @@ import java.lang.annotation.Target;
|
|||||||
@Target(ElementType.METHOD)
|
@Target(ElementType.METHOD)
|
||||||
@Retention(RetentionPolicy.RUNTIME)
|
@Retention(RetentionPolicy.RUNTIME)
|
||||||
public @interface GrowToolHint {
|
public @interface GrowToolHint {
|
||||||
boolean register() default false;
|
boolean register() default true;
|
||||||
boolean requiresApproval() default false;
|
boolean requiresApproval() default false;
|
||||||
String categoryKey() default "com";
|
String categoryKey() default "com";
|
||||||
String mappingId() default "";
|
String mappingId() default "";
|
||||||
String inputSchemaResource() default "";
|
String inputSchemaResource() default "";
|
||||||
String outputSchemaResource() default "";
|
String outputSchemaResource() default "";
|
||||||
|
|
||||||
|
// Meta 정보 추가 (보고용 샘플)
|
||||||
|
String displayDescription() default "";
|
||||||
|
String functionDescription() default "";
|
||||||
|
String whenToUse() default "";
|
||||||
|
String whenNotToUse() default "";
|
||||||
|
String ioLimits() default "";
|
||||||
|
String[] exampleQueries() default {};
|
||||||
|
boolean destructive() default false;
|
||||||
|
boolean idempotent() default false;
|
||||||
|
String[] tags() default {};
|
||||||
|
String[] requiredEnvKeys() default {};
|
||||||
|
String ownerOrg() default "";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user