Skip to content

tigjaw/openai-quickstart-python

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OpenAI API Quickstart - Python example app

This is simple python ChatGPT app developed using the the OpenAI API quickstart tutorial. It uses the Flask web framework. Check out the tutorial or follow the instructions below to get set up.

Setup

  1. If you don’t have Python installed, install it from here. If you do have Python installed, ensure it is fully up to date

    $ python.exe -m pip install --upgrade pip
  2. Ensure you have virtualenv installed

    $ pip install virtualenv
  3. Clone this repository

  4. Navigate into the project directory

    $ cd openai-quickstart-python
  5. Create a new virtual environment

    $ python -m venv venv
    $ . venv/bin/activate

    If the above encounters an error, try:

    $ python -m venv venv
    $ . venv/scripts/activate
  6. Install the requirements

    $ pip install -r requirements.txt
  7. Make a copy of the example environment variables file

    $ cp .env.example .env
  8. Add your API key to the newly created .env file

  9. a. Run the app manually

    $ flask run

    b. Run the app using the "run.bat" batch file. This will open the app automatically in your default browser.

You should now be able to access the app at https://localhost:5000! For the full context behind this example app, check out the tutorial.

Releases

No releases published

Packages

No packages published

Languages

  • CSS 45.8%
  • Python 29.6%
  • HTML 21.1%
  • Shell 2.8%
  • Batchfile 0.7%