siddhsql
siddhsql
I am trying to run this on debian linux and get this error: ``` $ python privateGPT.py Using embedded DuckDB with persistence: data will be stored in: db Traceback (most...
Hello - thanks for this library. Great work! I am trying to understand how to interpret the Open LLAMA weights. As I understand LLAMA is 2 things: - the NN...
This project is awesome and great but I was wondering couldn't you also provide a table with final rankings? Use whatever criteria you like but would be good to have...
I am trying to build a docker image for the `scann` algorithm like this on a **Mac**: ``` % docker build . -f ann_benchmarks/algorithms/scann/Dockerfile -t ann-benchmarks/scann ``` I understand the...
I came across this package. Thanks for developing it. I was wondering if there is any blog post explaining why someone should use this package instead of just using sequelize?
I am trying to marshal a large numpy array from Python to Java using this function: ``` # If from Python, you pass a bytearray or bytes variable to the...
hello - i came across this repo yesterday. nice work! reading the documentation i understand ngt is deprecated in favor of higher performing qg/qbg libraries but python support for them...
We have a Postgres 14 server that requires TLS to connect. we are able to connect to it using `psql`. Example: ``` PGPASSWORD=$(gcloud sql generate-login-token) psql \ "sslmode=verify-ca \ sslrootcert=/Users/xxx/keyfiles/dev-01.pem...
Hello, Thanks for this library. I did some benchmarking and the search is 100x slower than the C++ hnswlib. do you know why?
Hi, In this code: ``` Node(int id, MutableIntList[] connections, TItem item, boolean deleted) { this.id = id; this.connections = connections; this.item = item; this.deleted = deleted; } int maxLevel() {...