feat: expose _meta in tool metadata and map parametersSchema to inputSchema
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 27s
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 27s
This commit is contained in:
@@ -217,7 +217,7 @@
|
||||
const option = document.createElement('option');
|
||||
option.value = tool.name;
|
||||
option.textContent = tool.name;
|
||||
option.dataset.schema = JSON.stringify(tool.parametersSchema);
|
||||
option.dataset.schema = JSON.stringify(tool.inputSchema || tool.parametersSchema);
|
||||
option.dataset.prompts = JSON.stringify(tool.actionPrompts || {});
|
||||
option.dataset.integrationType = tool.integrationType || 'HTTP';
|
||||
optgroup.appendChild(option);
|
||||
|
||||
Reference in New Issue
Block a user