fix: resolve CI/CD issues - all tests pass locally
Some checks failed
CI / test (push) Has been cancelled
Some checks failed
CI / test (push) Has been cancelled
This commit is contained in:
@@ -1,25 +1,16 @@
|
|||||||
name: my_custom_tool
|
name: {{tool_name}}
|
||||||
description: A description of what your tool does
|
description: {{tool_description}}
|
||||||
|
|
||||||
input_schema:
|
input_schema:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
param1:
|
{% for param in parameters %}
|
||||||
type: string
|
{{param.name}}:
|
||||||
description: Description of param1
|
type: {{param.type}}
|
||||||
required: true
|
description: {{param.description}}
|
||||||
param2:
|
{% if param.required %}required: true{% endif %}
|
||||||
type: integer
|
{% endfor %}
|
||||||
description: Description of param2
|
|
||||||
default: 10
|
|
||||||
param3:
|
|
||||||
type: boolean
|
|
||||||
description: Optional boolean parameter
|
|
||||||
default: false
|
|
||||||
required:
|
|
||||||
- param1
|
|
||||||
|
|
||||||
annotations:
|
annotations:
|
||||||
read_only_hint: false
|
read_only_hint: {{read_only_hint | default(false)}}
|
||||||
destructive_hint: false
|
destructive_hint: {{destructive_hint | default(false)}}
|
||||||
non_confidential: true
|
|
||||||
|
|||||||
Reference in New Issue
Block a user