Built with the tools and technologies:
Bio Generator is a simple Generative AI Project for enhance my front-end skill. Through this project, I had chance to practice with AI API from GroqCloud and Vercel AI SDK
└── bio-generator/
├── next.config.mjs
├── package-lock.json
├── package.json
├── postcss.config.mjs
├── public
│ ├── next.svg
│ └── vercel.svg
├── src
│ ├── app
│ ├── components
│ ├── context
│ └── lib
├── README.md
├── tailwind.config.ts
├── tsconfig.json
└── yarn.lockTypeScript: version ^5
Node: version ^20
.env.local: GROQ_API_KEY="[Your API key]"
Build the project from source:
- Clone the bio-generator repository:
git clone https://github.com/tripplen23/bio-generator- Navigate to the project directory:
cd bio-generator- Install the required dependencies:
npm installTo run the project, execute the following command:
npm start