@@ -11,48 +11,52 @@ User guides provide helpful resources for using RedisVL and its different compon
1111
1212
1313
14- * [ Getting Started with RedisVL] ( 01_getting_started/ )
15- * [ Define an ` IndexSchema ` ] ( 01_getting_started/#define-an-indexschema )
16- * [ Sample Dataset Preparation] ( 01_getting_started/#sample-dataset-preparation )
17- * [ Create a ` SearchIndex ` ] ( 01_getting_started/#create-a-searchindex )
18- * [ Inspect with the ` rvl ` CLI] ( 01_getting_started/#inspect-with-the-rvl-cli )
19- * [ Load Data to ` SearchIndex ` ] ( 01_getting_started/#load-data-to-searchindex )
20- * [ Creating ` VectorQuery ` Objects] ( 01_getting_started/#creating-vectorquery-objects )
21- * [ Using an Asynchronous Redis Client] ( 01_getting_started/#using-an-asynchronous-redis-client )
22- * [ Updating a schema] ( 01_getting_started/#updating-a-schema )
23- * [ Check Index Stats] ( 01_getting_started/#check-index-stats )
24- * [ Cleanup] ( 01_getting_started/#cleanup )
25- * [ Querying with RedisVL] ( 02_hybrid_queries/ )
26- * [ Hybrid Queries] ( 02_hybrid_queries/#hybrid-queries )
27- * [ Combining Filters] ( 02_hybrid_queries/#combining-filters )
28- * [ Non-vector Queries] ( 02_hybrid_queries/#non-vector-queries )
29- * [ Count Queries] ( 02_hybrid_queries/#count-queries )
30- * [ Range Queries] ( 02_hybrid_queries/#range-queries )
31- * [ Advanced Query Modifiers] ( 02_hybrid_queries/#advanced-query-modifiers )
32- * [ Semantic Caching for LLMs] ( 03_llmcache/ )
33- * [ Initializing ` SemanticCache ` ] ( 03_llmcache/#initializing-semanticcache )
34- * [ Basic Cache Usage] ( 03_llmcache/#basic-cache-usage )
35- * [ Customize the Distance Threshhold] ( 03_llmcache/#customize-the-distance-threshhold )
36- * [ Utilize TTL] ( 03_llmcache/#utilize-ttl )
37- * [ Simple Performance Testing] ( 03_llmcache/#simple-performance-testing )
38- * [ Cache Access Controls, Tags & Filters] ( 03_llmcache/#cache-access-controls-tags-filters )
39- * [ Vectorizers] ( 04_vectorizers/ )
40- * [ Creating Text Embeddings] ( 04_vectorizers/#creating-text-embeddings )
41- * [ Search with Provider Embeddings] ( 04_vectorizers/#search-with-provider-embeddings )
42- * [ Selecting your float data type] ( 04_vectorizers/#selecting-your-float-data-type )
43- * [ Hash vs JSON Storage] ( 05_hash_vs_json/ )
44- * [ Hash or JSON – how to choose?] ( 05_hash_vs_json/#hash-or-json-how-to-choose )
45- * [ Cleanup] ( 05_hash_vs_json/#cleanup )
46- * [ Rerankers] ( 06_rerankers/ )
47- * [ Simple Reranking] ( 06_rerankers/#simple-reranking )
48- * [ LLM Session Memory] ( 07_session_manager/ )
49- * [ Managing multiple users and conversations] ( 07_session_manager/#managing-multiple-users-and-conversations )
50- * [ Semantic conversation memory] ( 07_session_manager/#semantic-conversation-memory )
51- * [ Conversation control] ( 07_session_manager/#conversation-control )
52- * [ Semantic Routing] ( 08_semantic_router/ )
53- * [ Define the Routes] ( 08_semantic_router/#define-the-routes )
54- * [ Initialize the SemanticRouter] ( 08_semantic_router/#initialize-the-semanticrouter )
55- * [ Simple routing] ( 08_semantic_router/#simple-routing )
56- * [ Update the routing config] ( 08_semantic_router/#update-the-routing-config )
57- * [ Router serialization] ( 08_semantic_router/#router-serialization )
58- * [ Clean up the router] ( 08_semantic_router/#clean-up-the-router )
14+ * [ Getting Started with RedisVL] ( getting_started/ )
15+ * [ Define an ` IndexSchema ` ] ( getting_started/#define-an-indexschema )
16+ * [ Sample Dataset Preparation] ( getting_started/#sample-dataset-preparation )
17+ * [ Create a ` SearchIndex ` ] ( getting_started/#create-a-searchindex )
18+ * [ Inspect with the ` rvl ` CLI] ( getting_started/#inspect-with-the-rvl-cli )
19+ * [ Load Data to ` SearchIndex ` ] ( getting_started/#load-data-to-searchindex )
20+ * [ Creating ` VectorQuery ` Objects] ( getting_started/#creating-vectorquery-objects )
21+ * [ Using an Asynchronous Redis Client] ( getting_started/#using-an-asynchronous-redis-client )
22+ * [ Updating a schema] ( getting_started/#updating-a-schema )
23+ * [ Check Index Stats] ( getting_started/#check-index-stats )
24+ * [ Cleanup] ( getting_started/#cleanup )
25+ * [ Querying with RedisVL] ( hybrid_queries/ )
26+ * [ Hybrid Queries] ( hybrid_queries/#hybrid-queries )
27+ * [ Combining Filters] ( hybrid_queries/#combining-filters )
28+ * [ Non-vector Queries] ( hybrid_queries/#non-vector-queries )
29+ * [ Count Queries] ( hybrid_queries/#count-queries )
30+ * [ Range Queries] ( hybrid_queries/#range-queries )
31+ * [ Advanced Query Modifiers] ( hybrid_queries/#advanced-query-modifiers )
32+ * [ Semantic Caching for LLMs] ( llmcache/ )
33+ * [ Initializing ` SemanticCache ` ] ( llmcache/#initializing-semanticcache )
34+ * [ Basic Cache Usage] ( llmcache/#basic-cache-usage )
35+ * [ Customize the Distance Threshhold] ( llmcache/#customize-the-distance-threshhold )
36+ * [ Utilize TTL] ( llmcache/#utilize-ttl )
37+ * [ Simple Performance Testing] ( llmcache/#simple-performance-testing )
38+ * [ Cache Access Controls, Tags & Filters] ( llmcache/#cache-access-controls-tags-filters )
39+ * [ Vectorizers] ( vectorizers/ )
40+ * [ Creating Text Embeddings] ( vectorizers/#creating-text-embeddings )
41+ * [ Search with Provider Embeddings] ( vectorizers/#search-with-provider-embeddings )
42+ * [ Selecting your float data type] ( vectorizers/#selecting-your-float-data-type )
43+ * [ Hash vs JSON Storage] ( hash_vs_json/ )
44+ * [ Hash or JSON – how to choose?] ( hash_vs_json/#hash-or-json-how-to-choose )
45+ * [ Cleanup] ( hash_vs_json/#cleanup )
46+ * [ Working with nested data in JSON] ( hash_vs_json/#working-with-nested-data-in-json )
47+ * [ Full JSON Path support] ( hash_vs_json/#full-json-path-support )
48+ * [ As an example:] ( hash_vs_json/#as-an-example )
49+ * [ Cleanup] ( hash_vs_json/#id1 )
50+ * [ Rerankers] ( rerankers/ )
51+ * [ Simple Reranking] ( rerankers/#simple-reranking )
52+ * [ LLM Session Memory] ( session_manager/ )
53+ * [ Managing multiple users and conversations] ( session_manager/#managing-multiple-users-and-conversations )
54+ * [ Semantic conversation memory] ( session_manager/#semantic-conversation-memory )
55+ * [ Conversation control] ( session_manager/#conversation-control )
56+ * [ Semantic Routing] ( semantic_router/ )
57+ * [ Define the Routes] ( semantic_router/#define-the-routes )
58+ * [ Initialize the SemanticRouter] ( semantic_router/#initialize-the-semanticrouter )
59+ * [ Simple routing] ( semantic_router/#simple-routing )
60+ * [ Update the routing config] ( semantic_router/#update-the-routing-config )
61+ * [ Router serialization] ( semantic_router/#router-serialization )
62+ * [ Clean up the router] ( semantic_router/#clean-up-the-router )
0 commit comments