@@ -1347,31 +1347,12 @@ update_localized_attribute_settings_1: |-
13471347reset_localized_attribute_settings_1 : |-
13481348 curl \
13491349 -X DELETE 'http://localhost:7700/indexes/INDEX_NAME/settings/localized-attributes'
1350- experimental_get_metrics_1 : |-
1351- curl \
1352- -X GET 'http://localhost:7700/metrics'
1353- experimental_post_logs_stderr_1 : |-
1354- curl \
1355- -X POST http://localhost:7700/logs/stderr \
1356- -H 'Content-Type: application/json' \
1357- --data-binary '{
1358- "target": "milli=trace,index_scheduler=info,actix_web=off"
1359- }'
1360- experimental_post_logs_stream_1 : |-
1361- curl \
1362- -X POST http://localhost:7700/logs/stream \
1363- -H 'Content-Type: application/json' \
1364- --data-binary '{
1365- "mode": "human",
1366- "target": "index_scheduler=trace"
1367- }'
1368- experimental_delete_logs_stream_1 : |-
1369- curl \
1370- -X DELETE http://localhost:7700/logs/stream
1371- experimental_get_embedders_1 : |-
1350+
1351+ # ## Code samples for experimental features
1352+ get_embedders_1 : |-
13721353 curl \
13731354 -X GET 'http://localhost:7700/indexes/INDEX_NAME/settings/embedders'
1374- experimental_update_embedders_1 : |-
1355+ update_embedders_1 : |-
13751356 curl \
13761357 -X PATCH 'http://localhost:7700/indexes/INDEX_NAME/settings' \
13771358 -H 'Content-Type: application/json' \
@@ -1385,10 +1366,10 @@ experimental_update_embedders_1: |-
13851366 }
13861367 }
13871368 }'
1388- experimental_reset_embedders_1 : |-
1369+ reset_embedders_1 : |-
13891370 curl \
13901371 -X DELETE 'http://localhost:7700/indexes/INDEX_NAME/settings/embedders'
1391- experimental_search_parameter_guide_hybrid_1 : |-
1372+ search_parameter_guide_hybrid_1 : |-
13921373 curl -X POST 'localhost:7700/indexes/INDEX_NAME/search' \
13931374 -H 'content-type: application/json' \
13941375 --data-binary '{
@@ -1398,11 +1379,11 @@ experimental_search_parameter_guide_hybrid_1: |-
13981379 "embedder": "default"
13991380 }
14001381 }'
1401- experimental_search_parameter_guide_vector_1 : |-
1382+ search_parameter_guide_vector_1 : |-
14021383 curl -X POST 'localhost:7700/indexes/INDEX_NAME/search' \
14031384 -H 'content-type: application/json' \
14041385 --data-binary '{ "vector": [0, 1, 2] }'
1405- experimental_search_parameter_reference_retrieve_vectors_1 : |-
1386+ search_parameter_reference_retrieve_vectors_1 : |-
14061387 curl -X POST 'localhost:7700/indexes/INDEX_NAME/search' \
14071388 -H 'content-type: application/json' \
14081389 --data-binary '{
@@ -1412,3 +1393,24 @@ experimental_search_parameter_reference_retrieve_vectors_1: |-
14121393 "embedder": "default"
14131394 }
14141395 }'
1396+ experimental_get_metrics_1 : |-
1397+ curl \
1398+ -X GET 'http://localhost:7700/metrics'
1399+ experimental_post_logs_stderr_1 : |-
1400+ curl \
1401+ -X POST http://localhost:7700/logs/stderr \
1402+ -H 'Content-Type: application/json' \
1403+ --data-binary '{
1404+ "target": "milli=trace,index_scheduler=info,actix_web=off"
1405+ }'
1406+ experimental_post_logs_stream_1 : |-
1407+ curl \
1408+ -X POST http://localhost:7700/logs/stream \
1409+ -H 'Content-Type: application/json' \
1410+ --data-binary '{
1411+ "mode": "human",
1412+ "target": "index_scheduler=trace"
1413+ }'
1414+ experimental_delete_logs_stream_1 : |-
1415+ curl \
1416+ -X DELETE http://localhost:7700/logs/stream
0 commit comments