Fix incorrect types in QueryResponse (#661)

## Description of changes

 - Improvements & Bug fixes
- Fix incorrect types for `embeddings` and `distances` in
`QueryResponse`
	 - closes: #660 

## Test plan
Tests ran and passed

## Documentation Changes
None

Co-authored-by: russell-pollari <pollarir@mgail.com>
This commit is contained in:
Russell Pollari
2023-06-02 17:06:01 -04:00
committed by GitHub
parent 9f54534217
commit b50ae87f1d

View File

@@ -61,10 +61,10 @@ export type GetResponse = {
export type QueryResponse = {
ids: IDs[];
embeddings: null | Embeddings[][];
embeddings: null | Embeddings[];
documents: (null | Document)[][];
metadatas: (null | Metadata)[][];
distances: null | number[][][];
distances: null | number[][];
}
export type AddResponse = {