-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor weaviate-cli to support v4 python weaviate client #70
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This commit adds the new folders structure, as well as the support for the create collection command.
This commit adds all the functionality for collections: * Update a collection * Get the existing or a specific collection * Delete a collection And adds the placeholders for the remaining verbs: * Query * Restore * Update * Delete
Signed-off-by: Rodrigo Lopez <[email protected]>
Deprecates the previous installation method with setup.py. Renames the lib directory to weaviate_cli for easy of import
Signed-off-by: Rodrigo Lopez <[email protected]>
Signed-off-by: Rodrigo Lopez <[email protected]>
Signed-off-by: Rodrigo Lopez <[email protected]>
Add Dockerfile
Enables the following operations with data: * Create data * Update data * Delete data * Query data As well as it adds the movies.json dataset from which the data is taken.
Adds also new job for building artifacts for the release and it will get pushed on a new tag only.
Remove hardcoded version and publish on new tag.
Fix gh-release job when downloading artifact.
Use artifact action v4.
Update versions for other actions
Great to see you again! Thanks for the contribution. |
This commit moves the dataset/movies.json into weaviate_cli so that it gets packaged, as well as adds all the required files for setuptools to package it accordingly.
Fix dataset packaging and data injesting.
Add --version argument to the tool
Also, fixes the client closing exception when it isn't created.
Add unit tests and integration.
SeMi -> Weaviate in README.rst
Move from rst to md README and update its content. Add contributing guidelines Add README for tests
Update READMEs.
Fix issue to load the auth for WCD clusters from .config/weaviate/con…
This commit also adds a Makefile for automation of steps, a pre-commit to ensure code correctness and a linter in the CI
Add linter and format all code with black.
Bumps [black](https://github.com/psf/black) from 24.2.0 to 24.3.0. - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](psf/black@24.2.0...24.3.0) --- updated-dependencies: - dependency-name: black dependency-type: direct:development ... Signed-off-by: dependabot[bot] <[email protected]>
Bump black from 24.2.0 to 24.3.0
This commit also improves the __import_json function
Add examples of configuration for WCD clusters.
rlmanrique
approved these changes
Oct 30, 2024
Add support for backup cancellation and retreiving backup status
This commit also renames the --auto_tenant flag into --force_auto_tenant which will leave the properties field empty so that auto_schema takes care of its creation.
Add missing director property with --randomize.
No neede anymore, everything went into main, we can forget about master. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This commit adds the new folders structure, as well as the support for the create collection command.