Merge pull request #5 from qdrant/feature/support-local-mode

Add support for local Qdrant mode
This commit is contained in:
Kacper Łukawski
2024-12-13 17:47:01 +01:00
committed by GitHub
3 changed files with 27 additions and 8 deletions

View File

@@ -82,10 +82,13 @@ by passing the `--fastembed-model-name` argument to the server.
The configuration of the server can be also done using environment variables:
- `QDRANT_URL`: URL of the Qdrant server
- `QDRANT_URL`: URL of the Qdrant server, e.g. `http://localhost:6333`
- `QDRANT_API_KEY`: API key for the Qdrant server
- `COLLECTION_NAME`: Name of the collection to use
- `FASTEMBED_MODEL_NAME`: Name of the FastEmbed model to use
- `QDRANT_LOCAL_PATH`: Path to the local Qdrant database
You cannot provide `QDRANT_URL` and `QDRANT_LOCAL_PATH` at the same time.
## License