Home / File/ apispec.json — langchain Source File

apispec.json — langchain Source File

Architecture documentation for apispec.json, a json file in the langchain codebase.

Entity Profile

Source Code

{
   "openapi": "3.1.0",
   "info": {
      "title": "Urlbox API",
      "description": "A plugin that allows the user to capture screenshots of a web page from a URL or HTML using ChatGPT.",
      "version": "v1"
   },
   "servers": [
      {
         "url": "https://api.urlbox.io"
      }
   ],
   "paths": {
      "/v1/render/sync": {
         "post": {
            "summary": "Render a URL as an image or video",
            "operationId": "renderSync",
            "security": [
               {
                  "SecretKey": []
               }
            ],
            "requestBody": {
               "required": true,
               "content": {
                  "application/json": {
                     "schema": {
                        "$ref": "#/components/schemas/RenderRequest"
                     }
                  }
               }
            },
            "responses": {
               "200": {
                  "description": "Successful operation",
                  "headers": {
                     "x-renders-used": {
                        "schema": {
                           "type": "integer"
                        },
                        "description": "The number of renders used"
                     },
                     "x-renders-allowed": {
                        "schema": {
                           "type": "integer"
                        },
                        "description": "The number of renders allowed"
                     },
                     "x-renders-reset": {
                        "schema": {
                           "type": "string"
                        },
                        "description": "The date and time when the render count will reset"
                     },
                     "x-urlbox-cache-status": {
                        "schema": {
                           "type": "string"
                        },
                        "description": "The cache status of the response"
                     },
// ... (308 more lines)

Frequently Asked Questions

What does apispec.json do?
apispec.json is a source file in the langchain codebase, written in json.
Where is apispec.json in the architecture?
apispec.json is located at libs/langchain/tests/unit_tests/examples/test_specs/urlbox/apispec.json (directory: libs/langchain/tests/unit_tests/examples/test_specs/urlbox).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free