Skip to content

Commit e0003c3

Browse files
update and refresh docs
1 parent 92e285c commit e0003c3

File tree

5 files changed

+64
-15
lines changed

5 files changed

+64
-15
lines changed

docs/_static/js/sidebar.js

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,26 @@ const toc = [
44
{ title: "Install", path: "/overview/installation.html" },
55
{ title: "CLI", path: "/overview/cli.html" },
66
]},
7-
{ header: "User Guides", toc: [
8-
{ title: "Getting Started", path: "/user_guide/getting_started_01.html" },
9-
{ title: "Query and Filter", path: "/user_guide/hybrid_queries_02.html" },
10-
{ title: "JSON vs Hash Storage", path: "/user_guide/hash_vs_json_05.html" },
11-
{ title: "Vectorizers", path: "/user_guide/vectorizers_04.html" },
12-
{ title: "Rerankers", path: "/user_guide/rerankers_06.html" },
13-
{ title: "Semantic Caching", path: "/user_guide/llmcache_03.html" },
14-
{ title: "Semantic Routing", path: "/user_guide/semantic_router_08.html" },
15-
]},
167
{ header: "API", toc: [
178
{ title: "Schema", path: "/api/schema.html"},
189
{ title: "Search Index", path: "/api/searchindex.html" },
1910
{ title: "Query", path: "/api/query.html" },
2011
{ title: "Filter", path: "/api/filter.html" },
21-
]},
22-
{ header: "Utils", toc: [
2312
{ title: "Vectorizers", path: "/api/vectorizer.html" },
2413
{ title: "Rerankers", path: "/api/reranker.html" },
25-
]},
26-
{ header: "Extensions", toc: [
2714
{ title: "LLM Cache", path: "/api/cache.html" },
15+
{ title: "LLM Session Manager", path: "/api/session_manager.html" },
2816
{ title: "Semantic Router", path: "/api/router.html" },
29-
]}
17+
]},
18+
{ header: "User Guides", toc: [
19+
{ title: "Getting Started", path: "/user_guide/getting_started_01.html" },
20+
{ title: "Query and Filter", path: "/user_guide/hybrid_queries_02.html" },
21+
{ title: "JSON vs Hash Storage", path: "/user_guide/hash_vs_json_05.html" },
22+
{ title: "Using Vectorizers", path: "/user_guide/vectorizers_04.html" },
23+
{ title: "Using Rerankers", path: "/user_guide/rerankers_06.html" },
24+
{ title: "Semantic Caching", path: "/user_guide/llmcache_03.html" },
25+
{ title: "Semantic Routing", path: "/user_guide/semantic_router_08.html" },
26+
]},
3027
];
3128

3229
document.addEventListener('DOMContentLoaded', function() {

docs/api/cache.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
*********
32
LLM Cache
43
*********

docs/api/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ filter
1818
vectorizer
1919
reranker
2020
cache
21+
session_manager
2122
router
2223
```
2324

docs/api/session_manager.rst

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
*******************
2+
LLM Session Manager
3+
*******************
4+
5+
6+
SemanticSessionManager
7+
======================
8+
9+
.. _semantic_session_manager_api:
10+
11+
.. currentmodule:: redisvl.extensions.session_manager
12+
13+
.. autoclass:: SemanticSessionManager
14+
:show-inheritance:
15+
:members:
16+
:inherited-members:
17+
18+
19+
StandardSessionManager
20+
======================
21+
22+
.. _standard_session_manager_api:
23+
24+
.. currentmodule:: redisvl.extensions.session_manager
25+
26+
.. autoclass:: StandardSessionManager
27+
:show-inheritance:
28+
:members:
29+
:inherited-members:

docs/api/vectorizer.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,18 @@ OpenAITextVectorizer
2626
:members:
2727

2828

29+
AzureOpenAITextVectorizer
30+
=========================
31+
32+
.. _azureopenaitextvectorizer_api:
33+
34+
.. currentmodule:: redisvl.utils.vectorize.text.azureopenai
35+
36+
.. autoclass:: AzureOpenAITextVectorizer
37+
:show-inheritance:
38+
:members:
39+
40+
2941
VertexAITextVectorizer
3042
======================
3143

@@ -49,3 +61,14 @@ CohereTextVectorizer
4961
:show-inheritance:
5062
:members:
5163

64+
65+
CustomTextVectorizer
66+
====================
67+
68+
.. _customtextvectorizer_api:
69+
70+
.. currentmodule:: redisvl.utils.vectorize.text.custom
71+
72+
.. autoclass:: CustomTextVectorizer
73+
:show-inheritance:
74+
:members:

0 commit comments

Comments
 (0)