Skip to main content
POST
/
v1
/
api
/
stores
/
{store_id}
/
process
Process Document Store And Vectorize Documents
curl --request POST \
  --url https://dev-knowledge-store.actualize.ae/v1/api/stores/{store_id}/process \
  --header 'Content-Type: application/json' \
  --data '
{
  "cleanup": "incremental",
  "shouldContextualize": false,
  "additionalContextPrompt": "<string>"
}
'
"<any>"

Path Parameters

store_id
string<uuid>
required

Body

application/json

Request payload for "Process Store" endpoint

cleanup
enum<string> | null
default:incremental

Cleanup mode for when processing the documents. Refer https://python.langchain.com/docs/how_to/indexing/#deletion-modes

Available options:
incremental,
full
shouldContextualize
boolean
default:false

Whether to use contextual retrieval

additionalContextPrompt
string | null

Additional context to use for contextual retrieval

Maximum length: 4096

Response

Successful Response

The response is of type any.