# Fireplexity: Create your LOCAL AI Search Engine!

Source: https://www.youtube.com/watch?v=HPYq-VUoBkE
Recap page: https://rapidrecap.app/video/HPYq-VUoBkE
Generated: 2025-08-23T08:31:50.757+00:00

---
## Quick Overview

This video demonstrates how to set up and run Fireplexity v2, an open-source, multi-source AI search engine, locally on your computer by cloning its GitHub repository, installing Node.js and dependencies, configuring API keys, and running the development server.

**Key Points:**
- Fireplexity v2 is an open-source AI search engine that can be run locally.
- The setup requires cloning the project from GitHub, installing Node.js, and running npm install.
- API keys for Firecrawl and Groq must be configured in a `.env.local` file.
- The application is launched using the command `npm run dev`.
- The local instance of Fireplexity is accessible via `http://localhost:3000`.
- The tutorial covers obtaining API keys from Firecrawl and Groq websites.

![Screenshot at 00:20: The GitHub repository page for Fireplexity, showcasing the project's title and a brief description of its functionality as a 'Blazing-fast AI search engine'.](https://ss.rapidrecap.app/screens/HPYq-VUoBkE/00-00-20.png)

**Context:** The video demonstrates the process of setting up and running Fireplexity v2, an open-source AI search engine, on a local machine. Fireplexity aggregates information from multiple sources, providing AI-powered insights, news, and images. The tutorial assumes basic familiarity with command-line operations and Node.js.

## Detailed Analysis

The video tutorial guides viewers through setting up Fireplexity v2, a multi-source AI search engine that provides insights, news, and images. The process begins with cloning the Fireplexity GitHub repository using the command `git clone https://github.com/mendableai/fireplexity.git`. After cloning, the user navigates into the fireplexity directory using `cd fireplexity` and installs the necessary packages with `npm install`. The next crucial step involves configuring the environment by copying the `.env.example` file to `.env.local` and then inserting the required API keys for Firecrawl and Groq into the `.env.local` file. The tutorial then shows how to run the application locally by executing `npm run dev`. Once the development server starts, it provides a local URL (http://localhost:3000) which can be accessed in a web browser to use the Fireplexity search engine. The video also briefly touches upon the pricing plans for Firecrawl and Groq, indicating a free tier for Firecrawl and a pay-per-token model for Groq.

### Setup

- Clone GitHub repo
- Install Node.js and dependencies
- Configure API keys
- Run development server

### Key Features of Fireplexity

- Multi-source search
- AI-powered insights, news, and images
- Local deployment

### Prerequisites

- Node.js installation

### API Key Configuration

- Copy .env.example to .env.local
- Add Firecrawl and Groq API keys

### Running the Application

- Execute 'npm run dev'
- Access via localhost:3000

![Screenshot at 00:01: The Fireplexity interface showing a search for 'GPT 5' and initial sources being analyzed.](https://ss.rapidrecap.app/screens/HPYq-VUoBkE/00-00-01.png)
![Screenshot at 00:11: The Fireplexity interface displaying search results for 'Mervin Praison', including links to LinkedIn, YouTube, IMDb, and GitHub.](https://ss.rapidrecap.app/screens/HPYq-VUoBkE/00-00-11.png)
![Screenshot at 00:20: The GitHub repository page for 'fireplexity', highlighting its description as a 'Blazing-fast AI search engine'.](https://ss.rapidrecap.app/screens/HPYq-VUoBkE/00-00-20.png)
![Screenshot at 00:32: The Fireplexity v2 landing page with a search bar prompting 'Ask anything...'.](https://ss.rapidrecap.app/screens/HPYq-VUoBkE/00-00-32.png)
![Screenshot at 01:01: The Node.js official website \(nodejs.org\) showcasing how to 'Run JavaScript Everywhere'.](https://ss.rapidrecap.app/screens/HPYq-VUoBkE/00-01-01.png)
![Screenshot at 01:09: Terminal window displaying the command 'git clone https://github.com/mendableai/fireplexity.git' to download the repository.](https://ss.rapidrecap.app/screens/HPYq-VUoBkE/00-01-09.png)
![Screenshot at 01:24: The .env.example file open in a code editor, showing placeholders for Firecrawl and Groq API keys.](https://ss.rapidrecap.app/screens/HPYq-VUoBkE/00-01-24.png)
![Screenshot at 01:57: Terminal window showing the command cp .env.example .env.local to create the local environment file.](https://ss.rapidrecap.app/screens/HPYq-VUoBkE/00-01-57.png)
![Screenshot at 02:02: Terminal window displaying the command npm install to install project dependencies.](https://ss.rapidrecap.app/screens/HPYq-VUoBkE/00-02-02.png)
![Screenshot at 02:11: Terminal output indicating that Fireplexity is starting and ready in 865ms, with local network addresses provided.](https://ss.rapidrecap.app/screens/HPYq-VUoBkE/00-02-11.png)
