langchain_community.agent_toolkits.openapi.spec.ReducedOpenAPISpec

class langchain_community.agent_toolkits.openapi.spec.ReducedOpenAPISpec(servers: List[dict], description: str, endpoints: List[Tuple[str, str, dict]])[源代码]

精简的OpenAPI规范。

这是对OpenAPI规范的一种快速且简单的表示方法。

参数
  • servers (列表[字典]) – 规范中的 servers。

  • description (字符串) – 规范的描述。

  • endpoints (列表[元组[字符串, 字符串, 字典]]) – 规范中的端点。

属性

servers

description

endpoints

方法

__init__(servers, description, endpoints)

__init__(servers: 列表[字典], description: 字符串, endpoints: 列表[元组[字符串, 字符串, 字典]]) None
参数
  • servers (列表[字典]) –

  • description (字符串) –

  • endpoints (列表[元组[字符串, 字符串, 字典]]) –

返回类型

None