Lists supported embedding models.
Returns the embedding models that the RAG service currently accepts for new assets, including their vector dimensions and pricing identifiers. Pair the chosen model with an asset's `embeddingConfig` when calling `POST /assets` or `POST /assets:file`. The list is tenant-agnostic and rarely changes; clients may cache it for the duration of a session.
Authorization
Bearer JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.
In: header
Path Parameters
The tenant identifier
Response Body
curl -X GET "https://api.fruxon.com/v1/tenants/string/assets:embeddingModels"[
{
"provider": "string",
"model": "string",
"dimensions": 0,
"description": "string"
}
]{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"property1": null,
"property2": null
}{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string",
"property1": null,
"property2": null
}Deletes a document and its chunks from the knowledge base.
Removes the document and every chunk produced from it from the asset's vector and full-text indices. The next search against the asset will no longer surface this content. The original source is untouched, so a subsequent `POST /assets/{asset}:refresh` (without a `documentIds` filter) will re-ingest the document. Idempotent at the API surface: deleting an already-removed document returns 404.
Estimates token count for any supported source type.
The accepted config keys and their validation rules are described by the `source-types` endpoint.