docs: update requirement for /raw-text endpoint

resolves #1893
This commit is contained in:
timothycarambat 2024-07-22 13:19:57 -07:00
parent fc27685eb1
commit 7b42a67acf
2 changed files with 2 additions and 20 deletions

View File

@ -237,6 +237,7 @@ function apiDocumentEndpoints(app) {
example: {
"textContent": "This is the raw text that will be saved as a document in AnythingLLM.",
"metadata": {
"title": "This key is required. See in /server/endpoints/api/document/index.js:287"
keyOne: "valueOne",
keyTwo: "valueTwo",
etc: "etc"

View File

@ -1012,26 +1012,7 @@
"description": "Internal Server Error"
}
},
"requestBody": {
"description": "Text content and metadata of the file to be saved to the system. Use metadata-schema endpoint to get the possible metadata keys",
"required": true,
"type": "object",
"content": {
"application/json": {
"schema": {
"type": "object",
"example": {
"textContent": "This is the raw text that will be saved as a document in AnythingLLM.",
"metadata": {
"keyOne": "valueOne",
"keyTwo": "valueTwo",
"etc": "etc"
}
}
}
}
}
}
"requestBody": {}
}
},
"/v1/documents": {