Back
Install & run in minutes
Open a terminal window and run the following commands
1- Clone the repo:
Terminal
git clone https://github.com/sylvainzircher/yo-GPT-2.0.git [your-name]cd [your-name]2- Install dependencies:
Terminal
npm install3- Add your Fireworks API key:
Create a .env.local file in the root directory and add your Fireworks API key (you can find it here):
NEXT_PUBLIC_FIREWORKS_API_KEY=your_api_key_here4- Run Locally:
Terminal
npm run dev5- Open http://localhost:3000 and start chatting!
More advanced set up
Enable Chatting with Documents (PDFs)
1- Create a folder namedembeddingsin the root directory.
2- Go to fast textand within the download model section, download crawl-300d-2M.vec . Save it into the embeddings folder previously created & unzip it.
3- Now your system is set up to chat with your PDFs using the embeddings model.