PromptsLabs is a library of prompts to see how new LLMs perform. It allows users to explore existing prompts and re new ones.
- Explore a collection of prompts
- Request new prompts
- Copy prompts to clipboard
- Dark mode support
First, clone the repository:
git clone https://github.com/mattt-ai/prompts-labs.git
cd prompts-labs
Then, install the dependencies:
npm install
Or
yarn install
Or
pnpm install
Create a .env.local
file in the root directory and add your Supabase credentials:
NEXT_PUBLIC_SUPABASE_URL=your_supabase_url
NEXT_PUBLIC_SUPABASE_ANON_KEY=your_supabase_anon_key
Finally, run the development server:
npm run dev
Or
yarn dev
Or
pnpm dev
Open http://localhost:3000 with your browser to see the result.
src/app
: Next.js app router pagessrc/components
: React componentssrc/lib
: Utility functions and helperssrc/types
: TypeScript type definitions
Contributions are welcome! Please feel free to submit a Pull Request.
This project is open source and available under the MIT License.