Personalized, seamless web journey
To integrate various AI services, you'll need to set up API keys. Insert your API keys in the appropriate environment variables.
-
Google Generative AI API Keys:
- Obtain your API keys from Google AI Studio
GOOGLE_GENERATIVE_AI_API_KEYS=<insert_key>, <insert_key>, <insert_key>, <insert_key>, ...
- Obtain your API keys from Google AI Studio
-
Groq API Key:
- Obtain your API key from Groq Console
GROQ_API_KEY=<insert_key>
- Obtain your API key from Groq Console
-
OpenAI API Key:
- Obtain your API key from OpenAI Platform
OPENAI_API_KEY=<insert_key>
- Obtain your API key from OpenAI Platform
-
Navigate to the frontend directory:
cd frontend/ -
Install the necessary dependencies using one of the following package managers:
npm install # or yarn install # or pnpm install # or bun install
-
Run the development server:
npm run dev # or yarn dev # or pnpm dev # or bun run dev
-
Open http://localhost:3000 in your browser to see the result.
-
Navigate to the backend directory:
cd backend/ -
Create and activate a virtual environment:
On macOS/Linux:
python3 -m venv venv source venv/bin/activateOn Windows:
python -m venv venv .\venv\Scripts\activate
-
Install the required packages:
pip install -r requirements.txt
-
Start the backend server:
uvicorn main:app --reload