examples icon indicating copy to clipboard operation
examples copied to clipboard

Jupyter Notebooks to help you get hands-on with Pinecone vector databases

Results 59 examples issues
Sort by recently updated
recently updated
newest added

### Is this a new bug? - [X] I believe this is a new bug - [X] I have searched the existing issues, and I could not find an existing...

bug

### Is this a new bug? - [X] I believe this is a new bug - [X] I have searched the existing issues, and I could not find an existing...

bug

### Is this a new bug? - [X] I believe this is a new bug - [X] I have searched the existing issues, and I could not find an existing...

bug

The notebook doesn't run as it is missing these dependencies. Where are they meant to be?

I get the following error ApiException: (400) Reason: Bad Request HTTP response headers: HTTPHeaderDict({'content-type': 'application/json', 'date': 'Mon, 06 Mar 2023 17:34:00 GMT', 'x-envoy-upstream-service-time': '2', 'content-length': '110', 'server': 'envoy', 'connection': 'close'})...

### Is this a new bug? - [X] I believe this is a new bug - [X] I have searched the existing issues, and I could not find an existing...

bug

### Is this a new bug? - [X] I believe this is a new bug - [X] I have searched the existing issues, and I could not find an existing...

bug

### Is this a new bug? - [X] I believe this is a new bug - [X] I have searched the existing issues, and I could not find an existing...

bug

https://www.pinecone.io/learn/composite-indexes/ has strange formatting. It also contains a significant code section. I wonder if that notebook is in the examples repository?

``` # saving data split = 256 file_count = 0 for i in range(0, sentence_embeddings.shape[0], split): end = i + split if end > sentence_embeddings.shape[0] + 1: end = sentence_embeddings.shape[0]...