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

16次阅读

共计 250 个字符,预计需要花费 1 分钟才能阅读完成。

例如有如下的 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

正文完
 0