diff --git a/qdrant-landing/content/documentation/platforms/_index.md b/qdrant-landing/content/documentation/platforms/_index.md index 1725c161b..2237a337d 100644 --- a/qdrant-landing/content/documentation/platforms/_index.md +++ b/qdrant-landing/content/documentation/platforms/_index.md @@ -19,3 +19,4 @@ partition: build | [Portable.io](/documentation/platforms/portable/) | Cloud platform for developing and deploying ELT transformations. | | [PrivateGPT](/documentation/platforms/privategpt/) | Tool to ask questions about your documents using local LLMs emphasising privacy. | | [Rivet](/documentation/platforms/rivet/) | A visual programming environment for building AI agents with LLMs. | +| [ToolJet](/documentation/platforms/tooljet/) | A low-code platform for business apps that connect to databases, cloud storages and more.| diff --git a/qdrant-landing/content/documentation/platforms/tooljet.md b/qdrant-landing/content/documentation/platforms/tooljet.md index 38960b789..bb540043f 100644 --- a/qdrant-landing/content/documentation/platforms/tooljet.md +++ b/qdrant-landing/content/documentation/platforms/tooljet.md @@ -19,9 +19,31 @@ title: ToolJet ![Qdrant Connection](/documentation/platforms/tooljet/tooljet-connection.png) -- Use the following supported operations in your ToolJet workflows. +You can interface with the Qdrant instance using the following Tooljet operations. -![Qdrant Operations](/documentation/platforms/tooljet/tooljet-operations.png) +- List Collections - Get the names of all the available collections in the Qdrant instance. + +![Qdrant List Collections](/documentation/platforms/tooljet/tooljet-list-collections.png) + +- Collection Info - Get the configuration of a specific collection. + +![Qdrant Collection Info](/documentation/platforms/tooljet/tooljet-collection-info.png) + +- Upsert Points - Add points to a collection. + +![Qdrant Upsert Points](/documentation/platforms/tooljet/tooljet-upsert-points.png) + +- Get Points - Get points from a collection by IDs or [filters](https://qdrant.tech/documentation/concepts/filtering/). + +![Qdrant Get Points](/documentation/platforms/tooljet/tooljet-get-points.png) + +- Delete Points - Delete points from a collection by [filters](https://qdrant.tech/documentation/concepts/filtering/). + +![Qdrant Delete Points](/documentation/platforms/tooljet/tooljet-delete-points.png) + +- Query Points - [Search](https://qdrant.tech/documentation/concepts/search/) for points in a collection. + +![Qdrant Query Points](/documentation/platforms/tooljet/tooljet-query-points.png) ## Further Reading diff --git a/qdrant-landing/static/documentation/platforms/tooljet/tooljet-collection-info.png b/qdrant-landing/static/documentation/platforms/tooljet/tooljet-collection-info.png new file mode 100644 index 000000000..e9c37f190 Binary files /dev/null and b/qdrant-landing/static/documentation/platforms/tooljet/tooljet-collection-info.png differ diff --git a/qdrant-landing/static/documentation/platforms/tooljet/tooljet-delete-points.png b/qdrant-landing/static/documentation/platforms/tooljet/tooljet-delete-points.png new file mode 100644 index 000000000..ad0b63270 Binary files /dev/null and b/qdrant-landing/static/documentation/platforms/tooljet/tooljet-delete-points.png differ diff --git a/qdrant-landing/static/documentation/platforms/tooljet/tooljet-get-points.png b/qdrant-landing/static/documentation/platforms/tooljet/tooljet-get-points.png new file mode 100644 index 000000000..4ebf45092 Binary files /dev/null and b/qdrant-landing/static/documentation/platforms/tooljet/tooljet-get-points.png differ diff --git a/qdrant-landing/static/documentation/platforms/tooljet/tooljet-list-collections.png b/qdrant-landing/static/documentation/platforms/tooljet/tooljet-list-collections.png new file mode 100644 index 000000000..2ab53d490 Binary files /dev/null and b/qdrant-landing/static/documentation/platforms/tooljet/tooljet-list-collections.png differ diff --git a/qdrant-landing/static/documentation/platforms/tooljet/tooljet-operations.png b/qdrant-landing/static/documentation/platforms/tooljet/tooljet-operations.png deleted file mode 100644 index 285417ff1..000000000 Binary files a/qdrant-landing/static/documentation/platforms/tooljet/tooljet-operations.png and /dev/null differ diff --git a/qdrant-landing/static/documentation/platforms/tooljet/tooljet-query-points.png b/qdrant-landing/static/documentation/platforms/tooljet/tooljet-query-points.png new file mode 100644 index 000000000..e53abad19 Binary files /dev/null and b/qdrant-landing/static/documentation/platforms/tooljet/tooljet-query-points.png differ diff --git a/qdrant-landing/static/documentation/platforms/tooljet/tooljet-upsert-points.png b/qdrant-landing/static/documentation/platforms/tooljet/tooljet-upsert-points.png new file mode 100644 index 000000000..7bdb62158 Binary files /dev/null and b/qdrant-landing/static/documentation/platforms/tooljet/tooljet-upsert-points.png differ