cURL
curl --request GET \ --url http://localhost:3773/agent/skills/{skillId}
{ "id": "question-answering-v1", "name": "Question Answering", "description": "Answer questions based on context", "version": "1.0.0", "inputSchema": { "type": "object", "properties": { "question": { "type": "string", "description": "The question to answer" } }, "required": [ "question" ] }, "outputSchema": { "type": "object", "properties": { "answer": { "type": "string", "description": "The answer to the question" } } } }
Returns detailed information about a specific skill
Was this page helpful?