from openapi import SDK
with SDK(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
) as sdk:
res = sdk.search.tables.drop_index(table_name="<value>", field_name="<value>")
# Handle response
print(res){
"field": "embedding",
"message": "Successfully dropped index on field 'embedding'"
}Eliminar un índice en el campo especificado.
from openapi import SDK
with SDK(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
) as sdk:
res = sdk.search.tables.drop_index(table_name="<value>", field_name="<value>")
# Handle response
print(res){
"field": "embedding",
"message": "Successfully dropped index on field 'embedding'"
}Gateway auth: send Authorization: Bearer <mka1-api-key>. For multi-user server-side integrations, you can also send X-On-Behalf-Of: <external-user-id>.
¿Esta página le ayudó?