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 detailed information about `a specific collection by its ID` from the collection table. This endpoint returns the collection object including its project, organization,
2
-
timestamps, and associated LLM service details (`llm_service_id`).
1
+
Retrieve detailed information about a specific collection by its collection id. This endpoint returns the collection object including its project, organization,
2
+
timestamps, and associated LLM service details (`llm_service_id` and `llm_service_name`).
3
3
4
-
Additionally, if the `include_docs` flag in the request body is true then you will get a list of document IDs associated with a given collection as well. Documents returned are not only stored by the AI platform, but also by OpenAI.
4
+
Additionally, if the `include_docs` flag in the request body is true then you will get a list of document IDs associated with a given collection as well. Note that, documents returned are not only stored by the AI platform, but also by OpenAI.
Copy file name to clipboardExpand all lines: backend/app/api/docs/collections/job_info.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ Retrieve information about a collection job by the collection job ID. This endpo
3
3
* Fetching the collection job object, including the collection job ID, the current status, and the associated collection details.
4
4
5
5
* If the job has finished, has been successful and it was a job of creation of collection then this endpoint will fetch the associated collection details from the collection table, including:
6
-
-`llm_service_id`: The OpenAI assistant or model used for the collection.
6
+
-`llm_service_id` and `llm_service_name`.
7
7
- Collection metadata such as ID, project, organization, and timestamps.
8
8
9
-
* If the delete-collection job succeeds, the status is set to “successful” and the `collection_key` contains the ID of the collection that has been deleted.
9
+
* If the delete-collection job succeeds, the status is set to “successful” and the `collection` key contains the ID of the collection that has been deleted.
Copy file name to clipboardExpand all lines: backend/app/api/docs/collections/list.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,4 +3,4 @@ not deleted
3
3
4
4
If a vector store was created - `llm_service_name` and `llm_service_id` in the response denote the name of the vector store (eg. 'openai vector store') and its id.
5
5
6
-
[To be deprecated] If an assistant was created, `llm_service_name` and `llm_service_id` in the response denote the name of the model used in the assistant (eg. 'gpt-4o') and assistant id.
6
+
[To be deprecated] If an assistant was created, `llm_service_name` and `llm_service_id` in the response denotes the name of the model used in the assistant (eg. 'gpt-4o') and assistant id.
0 commit comments