qdrant-ruby
qdrant-ruby copied to clipboard
Remove the api_key parameter
trafficstars
api_key must not be required in localhost
require 'qdrant'
client = Qdrant::Client.new(
url: "your-qdrant-url"
)```
@Jhonnyr97 I think we can just add a comment to the README with:
client = Qdrant::Client.new(
url: "your-qdrant-url",
api_key: "your-qdrant-api-key" # Optional for localhost
)
Thoughts?
The api_key: is actually not required: https://github.com/patterns-ai-core/qdrant-ruby/blob/main/lib/qdrant/client.rb#L16