https://github.com/weaviate-tutorials/quickstart
Associated code for the Quickstart tutorial
https://github.com/weaviate-tutorials/quickstart
Last synced: 10 months ago
JSON representation
Associated code for the Quickstart tutorial
- Host: GitHub
- URL: https://github.com/weaviate-tutorials/quickstart
- Owner: weaviate-tutorials
- License: mit
- Created: 2023-02-03T04:50:47.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-18T00:57:01.000Z (almost 3 years ago)
- Last Synced: 2025-04-11T08:31:01.442Z (about 1 year ago)
- Language: Jupyter Notebook
- Size: 342 KB
- Stars: 17
- Watchers: 3
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
> Note: We are archiving this repository. The code for the Quickstart tutorial is available in-line on the [site](https://weaviate.io/developers/weaviate/quickstart).
## Weaviate Quickstart Tutorial
This repository contains files related to the [Weaviate Quickstart Tutorial](https://weaviate.io/developers/weaviate/quickstart).
The `data` directory contains the relevant data file.
You will need to install the appropriate [Weaviate client library](https://weaviate.io/developers/weaviate/client-libraries) in order to run these.
### Python users
The `quickstart_end_to_end.ipynb` will take you through the tutorial end-to-end. You can run view and run it with a local Jupyter instance, or on a cloud environment such as Google Colab.
### JavaScript users
There are three files:
- quickstart_0_delete_class.js
- Deletes the `Question` class if one exists
- quickstart_1_import.js
- Imports the data
- quickstart_2_query.js
- Performs a `nearText` query
You can run them with NodeJS, for example by typing: `node quickstart_0_delete_class.js`.