Docs
Example

Example

Example of how to use heuristic in your project.

The code snippet below shows how to use Heuristic and integrate RAG-based functionalities into your applications.

Usage

const heuristic = require("heuristic-npm");
require("dotenv/config");
 
heuristic.config({ apiKey: process.env.HEURISTIC_API_KEY });
 
const generateResult = async () => {
  const query = "Converse chuck taylor all star",
    num_results = 10;
  const res = await heuristic.fetchResults({ query, num_results });
  return res;
};
 
generateResult().then((res) => {
  console.log(res);
});

Output

[
  {
    content:
      "Blacktop to runway, stage to sidewalk—Chucks go with anything, anywhere. Also in Wide Width. Chuck Taylor All Star Canvas. $65.00. Unisex High Top Shoe. 21 colors available. A must-have for everyone's wardrobe, the Chuck Taylor All Star is the most iconic and timeless silhouette. Now available in wide width and platform styles.",
    title: "Chuck Taylor All Star - The Most Iconic, Ever. Converse.com",
    url: "https://www.converse.com/shop/chuck-taylor-all-star-shoes",
  },
  {
    content:
      "Shop Converse.com for shoes, clothing, gear and the latest collaboration. Find Classic Chuck, Chuck 70, One Star, Jack Purcell & More. Free shipping & returns.",
    title: "Converse Official Site. Converse.com",
    url: "https://www.converse.com/",
  },
  {
    content:
      "Unisex-Adult Chuck Taylor All Star Canvas High Top Sneaker, 7.5 UK Men/ 10 UK Women · (8,843) · $64.95$64.95. FREE delivery Fri, Sep 13. Or fastest delivery Wed, ...",
    title: "Converse Chuck Taylor",
    url: "https://www.amazon.com/converse-chuck-taylor/s?k=converse+chuck+taylor",
  },
  {
    content:
      "Chuck Taylor All Star Lift Platform Water Repellent Leather. $90.00. Women's High Top Shoe. 2 colors available. Lifted Legend. A taller take on your favorite sneakers, with a platform sole to help you stand out in any crowd. Just In. Chuck Taylor All Star Lift Platform Suede Shimmer. $85.00.",
    title: "Chuck Taylor All Star Platform Shoes. Converse.com",
    url: "https://www.converse.com/shop/chuck-taylor-all-star-platform-shoes",
  },
  {
    content:
      "Shop the classic Converse Chuck Taylor All Star high-top and oxford shoes for men and women at Nike.com. Find your size, style and color from a range of options and enjoy free shipping on orders over $50.",
    title: "Converse Chuck Taylor All Star High Top - Nike",
    url: "https://www.nike.com/t/converse-chuck-taylor-all-star-high-top-unisex-shoe-xX439O",
  },
  {
    content:
      "Find classic Converse styles at Journeys! Fast shipping and easy returns. Shop Chuck Taylor All Star Hi-Tops and Low-Tops Today!",
    title: "Converse Footwear, Apparel, and Accessories",
    url: "https://www.journeys.com/brand/converse?srsltid=AfmBOopTrDCff7OKlesDvESp1zBk-TK9O49zGeqfYwPw2fCr9KgS36Yb",
  },
  {
    content:
      "Every closet deserves a pair of classic chucks. From classic colors to seasonal hues, choose from low, high & platform styles.",
    title: "Classic Chucks. Converse.com",
    url: "https://www.converse.com/shop/classic-chuck-shoes",
  },
  {
    content:
      "Find classic Converse styles at Journeys! Fast shipping and easy returns. Shop Chuck Taylor All Star Hi-Tops and Low-Tops Today!",
    title: "Converse Footwear, Apparel, and Accessories | Journeys",
    url: "https://www.journeys.com/brand/converse",
  },
  {
    content:
      "Over the years Converse shoes have had an unwavering ability to allow men, women and kids everywhere to express their individuality. True classic style is embodied in the Converse Chuck Taylor All Star sneaker, which has remained virtually unchanged since its beginning in basketball in the 1920's.",
    title: "Converse Shoes, Chuck Taylor Sneakers",
    url: "https://www.famousfootwear.com/brands/converse",
  },
  {
    content:
      '1-48 of over 1,000 results for "chuck taylor all star converse men" Results. Price and other details may vary based on product size and color. +98. Converse. Chuck Taylor All Star Low Top Sneakers. 4.5 out of 5 stars 14,813. $59.99 $ 59. 99. FREE delivery Tue, Sep 10 . Prime Try Before You Buy +12.',
    title: "Amazon.com: Chuck Taylor All Star Converse Men",
    url: "https://www.amazon.com/chuck-taylor-star-converse-men/s?k=chuck+taylor+all+star+converse+men",
  },
];