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 new file mode 100644 index 000000000..2dd59c9b3 --- /dev/null +++ b/qdrant-landing/content/documentation/platforms/tooljet.md @@ -0,0 +1,51 @@ +--- +title: ToolJet +--- + +# ToolJet + +[ToolJet](https://www.tooljet.com) is a low-code platform for building business applications. Connect to databases, cloud storages, GraphQL, API endpoints, Airtable, Google sheets, OpenAI, etc and build apps using drag and drop application builder. + +## Prerequisites + +1. A Qdrant instance to connect to. You can get a free cloud instance at [cloud.qdrant.io](https://cloud.qdrant.io/). +2. A [ToolJet instance](https://www.tooljet.com) to develop your workflows. + +## Setting Up + +- Search for the Qdrant plugin in the Tooljet [plugins marketplace](https://docs.tooljet.com/docs/marketplace/plugins/marketplace-plugin-qdrant). + +- Set up the connection to Qdrant using your instance credentials. + +![Qdrant Connection](/documentation/platforms/tooljet/tooljet-connection.png) + +You can interface with the Qdrant instance using the following Tooljet operations. + +- 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 + +- [ToolJet Documentation](https://docs.tooljet.com/docs/). +- [ToolJet Qdrant Plugin](https://docs.tooljet.com/docs/marketplace/plugins/marketplace-plugin-qdrant/). 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..052509a42 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-connection.png b/qdrant-landing/static/documentation/platforms/tooljet/tooljet-connection.png new file mode 100644 index 000000000..79e41a67c Binary files /dev/null and b/qdrant-landing/static/documentation/platforms/tooljet/tooljet-connection.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..c0170fe1d 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..45ea5b165 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..3551c03f8 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-query-points.png b/qdrant-landing/static/documentation/platforms/tooljet/tooljet-query-points.png new file mode 100644 index 000000000..fa8ff8aac 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..88e339ce3 Binary files /dev/null and b/qdrant-landing/static/documentation/platforms/tooljet/tooljet-upsert-points.png differ