Skip to content

achyutbenz19/phanes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

81 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Phanes

Personalized, seamless web journey

Getting Started

API Integration

To integrate various AI services, you'll need to set up API keys. Insert your API keys in the appropriate environment variables.

  1. 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>, ...
  2. Groq API Key:

    • Obtain your API key from Groq Console
      GROQ_API_KEY=<insert_key>
  3. OpenAI API Key:

Frontend Setup

  1. Navigate to the frontend directory:

    cd frontend/
  2. Install the necessary dependencies using one of the following package managers:

    npm install
    # or
    yarn install
    # or
    pnpm install
    # or
    bun install
  3. Run the development server:

    npm run dev
    # or
    yarn dev
    # or
    pnpm dev
    # or
    bun run dev
  4. Open http://localhost:3000 in your browser to see the result.

Backend Setup

  1. Navigate to the backend directory:

    cd backend/
  2. Create and activate a virtual environment:

    On macOS/Linux:

    python3 -m venv venv
    source venv/bin/activate

    On Windows:

    python -m venv venv
    .\venv\Scripts\activate
  3. Install the required packages:

    pip install -r requirements.txt
  4. Start the backend server:

    uvicorn main:app --reload

About

personalized, seamless web journey

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors