MindForge is a web application that utilizes OpenAI's GPT-3 and ElevenLabs' text-to-speech API to generate human-like text and speech based on user input. This project is built using Next.js.
Before running the project, make sure you have the following installed:
- Node.js (v14.0.0 or higher)
- npm or yarn (package manager)
- Clone the repository:
git clone https://github.com/TheExodus90/MindForge.git
- Navigate to the project directory:
cd MindForge
- Install the required dependencies:
npm install
or yarn install
- Create a
.env.local
file at the root of the project and add the necessary API keys:
OPENAI_API_KEY=your_openai_api_key ELEVENLABS_API_KEY=your_elevenlabs_api_key
- Running the Development Server
To start the development server, run:
npm run dev
or yarn dev
Open http://localhost:3000 with your browser to see the result.
- Generate human-like text responses based text and speech based on user input. This project is built using Next.js.