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.0.1",
   "info": {
      "title": "Datasette API",
      "description": "Execute SQL queries against a Datasette database and return the results as JSON",
      "version": "v1"
   },
   "servers": [
      {
         "url": "https://datasette.io"
      }
   ],
   "paths": {
      "/content.json": {
         "get": {
            "operationId": "query",
            "summary": "Execute a SQLite SQL query against the content database",
            "description": "Accepts SQLite SQL query, returns JSON. Does not allow PRAGMA statements.",
            "parameters": [
               {
                  "name": "sql",
                  "in": "query",
                  "description": "The SQL query to be executed",
                  "required": true,
                  "schema": {
                     "type": "string"
                  }
               },
               {
                  "name": "_shape",
                  "in": "query",
                  "description": "The shape of the response data. Must be \"array\"",
                  "required": true,
                  "schema": {
                     "type": "string",
                     "enum": [
                        "array"
                     ]
                  }
               }
            ],
            "responses": {
               "200": {
                  "description": "Successful SQL results",
                  "content": {
                     "application/json": {
                        "schema": {
                           "type": "array",
                           "items": {
                              "type": "object"
                           }
                        }
                     }
                  }
               },
               "400": {
                  "description": "Bad request"
               },
               "500": {
                  "description": "Internal server error"
               }
            }
         }
      }
   }
}

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/datasette/apispec.json (directory: libs/langchain/tests/unit_tests/examples/test_specs/datasette).

Analyze Your Own Codebase

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

Try Supermodel Free