求助, 大模型框架(llamaindex, langchain 等)如何读取 openapi spec, 生成相应 tool, 然后供的相关 agent 调用?

查看 29|回复 0
作者:yazinnnn0   
例如有如下的 spec, 该怎么将其转化为能够发送 http 请求的 tool, 然后给相应的 agent 去使用呢...
---
openapi: 3.0.3
info:
  title: openapi-server API
  version: "1.0"
servers:
- url: http://localhost:8080
paths:
  /hello:
    get:
      tags:
      - Greeting Resource
      responses:
        "200":
          description: OK
          content:
            text/plain:
              schema:
                type: string
您需要登录后才可以回帖 登录 | 立即注册

返回顶部