Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fern/apis/api/generators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ groups:
go-sdk:
generators:
- name: fernapi/fern-go-sdk
version: 1.16.4
version: 1.28.3
disable-examples: true
api:
settings:
Expand Down
77 changes: 76 additions & 1 deletion fern/apis/api/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -11654,6 +11654,13 @@
"$ref": "#/components/schemas/ToolRejectionPlan"
}
]
},
"parameters": {
"type": "array",
"description": "Static key-value pairs merged into the request body or function arguments. Values support Liquid templates.",
"items": {
"$ref": "#/components/schemas/ToolParameter"
}
}
},
"required": [
Expand Down Expand Up @@ -39184,6 +39191,13 @@
"$ref": "#/components/schemas/VariableExtractionPlan"
}
]
},
"parameters": {
"type": "array",
"description": "Static key-value pairs merged into the request body or function arguments. Values support Liquid templates.",
"items": {
"$ref": "#/components/schemas/ToolParameter"
}
}
},
"required": [
Expand Down Expand Up @@ -39564,6 +39578,13 @@
"$ref": "#/components/schemas/OpenAIFunction"
}
]
},
"parameters": {
"type": "array",
"description": "Static key-value pairs merged into the request body or function arguments. Values support Liquid templates.",
"items": {
"$ref": "#/components/schemas/ToolParameter"
}
}
},
"required": [
Expand Down Expand Up @@ -41340,6 +41361,13 @@
"$ref": "#/components/schemas/ToolRejectionPlan"
}
]
},
"parameters": {
"type": "array",
"description": "Static key-value pairs merged into the request body or function arguments. Values support Liquid templates.",
"items": {
"$ref": "#/components/schemas/ToolParameter"
}
}
},
"required": [
Expand Down Expand Up @@ -41958,6 +41986,13 @@
"$ref": "#/components/schemas/VariableExtractionPlan"
}
]
},
"parameters": {
"type": "array",
"description": "Static key-value pairs merged into the request body or function arguments. Values support Liquid templates.",
"items": {
"$ref": "#/components/schemas/ToolParameter"
}
}
}
},
Expand Down Expand Up @@ -42185,6 +42220,13 @@
"$ref": "#/components/schemas/OpenAIFunction"
}
]
},
"parameters": {
"type": "array",
"description": "Static key-value pairs merged into the request body or function arguments. Values support Liquid templates.",
"items": {
"$ref": "#/components/schemas/ToolParameter"
}
}
}
},
Expand Down Expand Up @@ -64645,7 +64687,40 @@
"transport",
"twiml"
]
},
"ToolParameter": {
"type": "object",
"properties": {
"key": {
"type": "string",
"description": "This is the key of the parameter."
},
"value": {
"description": "The value of the parameter. Any JSON type. String values support Liquid templates.",
"oneOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"type": "object"
},
{
"type": "array"
}
]
}
},
"required": [
"key",
"value"
]
}
}
}
}
}
3 changes: 3 additions & 0 deletions fern/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,9 @@ navigation:
- page: Tool rejection plan
path: tools/tool-rejection-plan.mdx
icon: fa-light fa-shield-xmark
- page: Static variables and aliases
path: tools/static-variables-and-aliases.mdx
icon: fa-light fa-arrow-right-arrow-left
- page: Custom tools troubleshooting
path: tools/custom-tools-troubleshooting.mdx
icon: fa-light fa-wrench
Expand Down
Loading
Loading