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": "Speak",
"description": "Learn how to say anything in another language.",
"version": "v1"
},
"servers": [
{
"url": "https://api.speak.com"
}
],
"paths": {
"/v1/public/openai/translate": {
"post": {
"operationId": "translate",
"summary": "Translate and explain how to say a specific phrase or word in another language.",
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/translateRequest"
}
}
}
},
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/translateResponse"
}
}
}
}
}
}
},
"/v1/public/openai/explain-phrase": {
"post": {
"operationId": "explainPhrase",
"summary": "Explain the meaning and usage of a specific foreign language phrase that the user is asking about.",
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/explainPhraseRequest"
}
}
}
},
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
// ... (160 more lines)
Source
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/speak/apispec.json (directory: libs/langchain/tests/unit_tests/examples/test_specs/speak).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free