メインコンテンツへスキップ
GET
/
api
/
v1
/
tools
利用可能なツール一覧を取得
curl --request GET \
  --url http://localhost:5300/api/v1/tools \
  --header 'Authorization: Bearer <token>'
{
  "code": 0,
  "msg": "ok",
  "data": {
    "tools": [
      {
        "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.

レスポンス

200 - application/json

Success

code
integer
:

0

msg
string
:

"ok"

data
object