openapi_spec_to_openai_fn#
- langchain.chains.openai_functions.openapi.openapi_spec_to_openai_fn(spec: OpenAPISpec) Tuple[List[Dict[str, Any]], Callable] [source]#
- Convert a valid OpenAPI spec to the JSON Schema format expected for OpenAI
函数。
- Parameters:
spec (OpenAPISpec) – 要转换的OpenAPI规范。
- Returns:
- OpenAI函数的JSON模式和用于执行的默认函数的元组
基于OpenAI函数模式的请求。
- Return type:
元组[列表[字典[字符串, 任意]], 可调用]