Ali Kadhim commited on
Commit
14d1c28
·
unverified ·
1 Parent(s): 8162023

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -27,9 +27,9 @@ Install the packages required for this python envirnoment in `requirements.txt`.
27
  pip install -r requirements.txt
28
  ```
29
 
30
- Add your OpenAI Key to `.env` file and save the file.
31
  ```
32
-
33
  ```
34
 
35
  Let's try deploying it locally. Make sure you're in the python environment where you installed Chainlit and OpenAI.
@@ -44,12 +44,12 @@ Great work! Let's see if we can interact with our chatbot.
44
 
45
  Time to throw it into a docker container a prepare it for shipping
46
 
47
- Build the Docker Image
48
  ``` bash
49
  docker build -t llm-app .
50
  ```
51
 
52
- Test the Docker Image Locally (Optional)
53
  ``` bash
54
  docker run -p 7860:7860 llm-app
55
  ```
 
27
  pip install -r requirements.txt
28
  ```
29
 
30
+ Open your `.env` file. Replace the `###` in your `.env` file with your OpenAI Key and save the file.
31
  ```
32
+ OPENAI_API_KEY=sk-###
33
  ```
34
 
35
  Let's try deploying it locally. Make sure you're in the python environment where you installed Chainlit and OpenAI.
 
44
 
45
  Time to throw it into a docker container a prepare it for shipping
46
 
47
+ Build the Docker image. We'll tag our image as `llm-app` using the `-t` parameter. The `.` at the end means we want all of the files in our current directory to be added to our image.
48
  ``` bash
49
  docker build -t llm-app .
50
  ```
51
 
52
+ Run and test the Docker image locally using the `run` command. The `-p`parameter connects our host port # to the left of the `:` to our container port # on the right.
53
  ``` bash
54
  docker run -p 7860:7860 llm-app
55
  ```