Skip to content

Instantly share code, notes, and snippets.

@Barqawiz
Last active September 20, 2023 10:21
Show Gist options
  • Save Barqawiz/2e489ef68604fb5203723e213b902e21 to your computer and use it in GitHub Desktop.
Save Barqawiz/2e489ef68604fb5203723e213b902e21 to your computer and use it in GitHub Desktop.
const { SemanticSearch } = require('intellinode');
// apikey from openai.com
const search = new SemanticSearch(apiKey);
// pivotItem is the item to search.
// searchArray is the array of strings to search through.
const results = await search.getTopMatches(pivotItem, searchArray, numberOfMatches);
const filteredArray = search.filterTopMatches(results, searchArray)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment