メインコンテンツへスキップ
GET
/
api
/
v1
/
tools
/
{tool_name}
ツール詳細を取得
curl --request GET \
  --url http://localhost:5300/api/v1/tools/{tool_name} \
  --header 'Authorization: Bearer <token>'
{
  "code": 0,
  "msg": "ok",
  "data": {
    "tool": {
      "name": "<string>",
      "label": {},
      "description": {},
      "icon": "<string>",
      "spec": {
        "llm_prompt": "<string>",
        "parameters": {}
      }
    }
  }
}

承認

Authorization
string
header
必須

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

パスパラメータ

tool_name
string
必須

ツール名

レスポンス

Success

code
integer
:

0

msg
string
:

"ok"

data
object