We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There is lacking documentation for the following steps in the setup of korvus in order to run the example scripts:
"semantic_search": {"model": "Alibaba-NLP/gte-base-en-v1.5",
Should be:
"semantic_search": {"model": "Alibaba-NLP/gte-base-en-v1.5", "parameters": {"trust_remote_code": True, "token": hf_token}},
$ CREATE EXTENSION IF NOT EXISTS vector;
This issue I haven't resolved yet
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There is lacking documentation for the following steps in the setup of korvus in order to run the example scripts:
1. When using a Hugging Face model in a Pipeline, you need to pass a parameter "trust_remote_code": True. Look at below example:
Should be:
2. In order to run any segmentation search you need to create the extension for vectors in the Postgres Database:
3. You need to authenticate to Hugging Face in order to use their models in the korvus.OpenSourceAI() component.
This issue I haven't resolved yet
The text was updated successfully, but these errors were encountered: