Skip to content

Commit

Permalink
Update README with same code changes
Browse files Browse the repository at this point in the history
  • Loading branch information
zackproser committed Oct 3, 2023
1 parent b168619 commit 3680755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ const getMatchesFromEmbeddings = async (embeddings: number[], topK: number, name
} catch (e) {
// Log the error and throw it
console.log("Error querying embeddings: ", e)
throw (new Error(`Error querying embeddings: ${e}`,))
throw new Error(`Error querying embeddings: ${e}`)
}
}
```
Expand Down

0 comments on commit 3680755

Please sign in to comment.