Overwrite Text
It is similar to the upload_text endpoint, but it overwrites the existing text content.
POST/overwrite_text
Request Body
- Name
file_id
- Required
Required
- Type
- string
- Description
The ID of the file to overwrite.
- Name
contents
- Required
Required
- Type
- string
- Description
The text content to upload. Minimum length:
5
.
- Name
name
- Type
- string
- Description
The name of the content.
- Name
chunk_size
- Type
- integer
- Description
The chunk size (in tokens) applied when splitting the document.
- Name
chunk_overlap
- Type
- integer
- Description
The chunk overlap (in tokens) applied when splitting the document.
Before you can make requests to the Supavec API, you will need to grab your API key from your dashboard.
JavaScript
const res = await fetch("https://api.supavec.com/overwrite_text", {
method: "POST",
headers: {
"Content-Type": "application/json",
authorization: apiKey,
},
body: JSON.stringify({ file_id, contents, name, chunk_size, chunk_overlap }),
});
Response
{
"success": true,
"message": "File overwritten successfully",
"file_id": "a2eacfa8-36a6-4eb7-aa86-52fc722057f9"
}