Skip to content

Latest commit

 

History

History
49 lines (41 loc) · 1.37 KB

README.md

File metadata and controls

49 lines (41 loc) · 1.37 KB

This is the source code for an AI Portfolio Site Reviewer.

The techstack used are Python(Django), HTML, TailwindCSS & Javascript.

To run this locally, run these commands:

git clone https://github.com/tomitokko/ai-portfolio-reviewer
cd ai-portfolio-reviewer

Now run this command below and open http://127.0.0.1:8000/ in your browser to view this project

python3 manage.py runserver



Here is a quick image display for the whole application image


VoiceFlow Code to query OpenAI Vision:

{
    "model": "gpt-4-vision-preview",
    "messages": [
        {
            "role": "user",
            "content": [
                {
                    "type": "text",
                    "text": "Take a good look at the image, it is a full screenshot of a portfolio website. Analyse the image I have provided and give me a full detailed review of the portfolio website. Everything from the good and bad, and also things to improve on. Go into details."
                },
                {
                    "type": "image_url",
                    "image_url": {
                        "url": "{last_utterance}"
                    }
                }
            ]
        }
    ],
    "max_tokens": 1000
}