elliotsayes
elliotsayes
Using the `unsplash-images` collection: https://playground.getvectorai.com/collections/?collection=unsplash-images result for: ```vi_client.search_image('unsplash-images', image_url, ['image_url_vector_'])``` with `image_url` as: https://www.rover.com/blog/wp-content/uploads/2020/06/siberian-husky-4735878_1920.jpg https://davidkerrphotography.co.nz/wp-content/uploads/2016/10/Slide01.jpg identical result for both: ``` {'count': 17506, 'results': [{'_clusters_': {}, '_id': 'tLUgvVaCQnY', '_search_score': 0.6311334, 'dictionary_label_1':...
Fixes #99 Replaces outdated instances of `throwJSError` with `throwOrDie`. Working: RN 70.1 Not tested: RN below 70.1
When calling `crypto.generatePrime`: `TypeError: _reactNativeQuickCrypto.default.generatePrime is not a function.` However, IDE hint indicate the function exists. `lib/typescript/index.d.ts`: ``` declare const crypto: { ... generatePrime(size: number, callback: (err: Error | null,...
To reproduce: 1. `npx react-native init BlobRepro --template react-native-template-typescript && cd BlobRepro` 2. `yarn add react-native-quick-sqlite && npx pod-install` 3. Add a function to write maby blobs, e.g.: ```typescript const...
When creating MMKV with a bad path e.g. ```js const storage = new MMKV({ id: 'storage', path: '/someillegalpath/data', }) ``` This call succeeds ```js storage.put('myKey', 'some data') ``` However the...
Happens intermittently, even though I'm using the same key each time. Seems to happen if I have already called some combination of `pbkdf2Sync`, `createDecipheriv`... Will post steps to reproduce at...
Hi, I'm having a little trouble converting my data to use in the `RSA.signPSS` function. I've worked out that the `signature` parameter should be a base64 string, but I can't...
Trying to build for web gives: `don't know how to build Lua for wasm32-unknown-unknown` ..originating from the `lua-src-rs` package. That package does support wasm, but only the `wasm32-unknown-emscripten` target which...
#### Feature Currently, when calling wasm-c-api's `wasm_instance_new*` function, the wasm runtime is first instantiated with `wasm_runtime_instantiate_ex`, and later on the `c_api_func_imports` are registered to the instance. However, during the runtime...
`read_all` exists for `Vec` to read as long as there is remaining data, it would be nice if you could do something similar for `Option`, but reading up to one...