You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[Retrieve Closest Documents](#retrieve-closest-documents)| POST |`/v1/query`| Retrieve the closest documents from the vector store based on a query. |
23
23
|[Retrieve Vector Store Statistics](#retrieve-vector-store-statistics)| GET |`/v1/statistics`| Retrieve statistics about the vector store. |
24
-
|[Answer with RAG](#answer-with-rag)| POST |`/v1/pw_ai_answer`| Generate an answer to a query using a RAG pipeline. |
25
-
|[Summarize Texts](#summarize-texts)| POST |`/v1/pw_ai_summary`| Summarize a list of texts. |
26
-
|[List Indexed Documents](#list-indexed-documents)| POST |`/v1/pw_list_documents`| List documents indexed in the vector store. |
24
+
|[Answer with RAG](#answer-with-rag)| POST |`/v2/answer`| Generate an answer to a query using a RAG pipeline. |
25
+
|[Summarize Texts](#summarize-texts)| POST |`/v2/summarize`| Summarize a list of texts. |
26
+
|[List Indexed Documents](#list-indexed-documents)| POST |`/v2/list_documents`| List documents indexed in the vector store. |
27
27
28
28
29
29
## Retrieve Closest Documents
@@ -75,7 +75,7 @@ Retrieve statistical information about the vector store, such as file counts and
75
75
76
76
## Answer with RAG
77
77
78
-
**Endpoint**: `POST /v1/pw_ai_answer`
78
+
**Endpoint**: `POST /v2/answer`
79
79
80
80
Provide a response to a query using a RAG pipeline.
81
81
@@ -104,7 +104,7 @@ Provide a response to a query using a RAG pipeline.
104
104
105
105
## Summarize Texts
106
106
107
-
**Endpoint**: `POST /v1/pw_ai_summary`
107
+
**Endpoint**: `POST /v2/summarize`
108
108
109
109
Summarize a list of texts.
110
110
@@ -131,7 +131,7 @@ Summarize a list of texts.
131
131
132
132
## List Indexed Documents
133
133
134
-
**Endpoint**: `POST /v1/pw_list_documents`
134
+
**Endpoint**: `POST /v2/list_documents`
135
135
136
136
List documents currently indexed in the vector store, with optional filtering or metadata selection.
0 commit comments