singhjagpreet commited on
Commit
cbae271
1 Parent(s): f358d58

updated readme

Browse files
Files changed (1) hide show
  1. README.md +6 -8
README.md CHANGED
@@ -37,6 +37,10 @@ Follow these steps to get started with Document Reader:
37
  ```bash
38
  pip install -r requirements.txt
39
  ```
 
 
 
 
40
 
41
  4. Run your app:
42
 
@@ -57,16 +61,10 @@ Feel free to type "help" at any time for assistance.
57
 
58
  The chatbot may require configuration through environment variables. Check the `.env` file for details.
59
 
60
- ## Create an `.env` file.
61
 
62
- ```bash
63
- echo OPENAI_API_KEY = <your-openai-api-key> > .env
64
- ```
65
 
66
- ```bash
67
- echo OPENAI_API_KEY = <your-openai-api-key> > .env
68
- ```
69
-
70
  Create an OPENAI_API_KEY here https://platform.openai.com/api-keys
71
 
72
 
 
37
  ```bash
38
  pip install -r requirements.txt
39
  ```
40
+ 5. Create .env:
41
+ ```bash
42
+ echo 'OPENAI_API_KEY=<your-openai-api-key>' > .env
43
+ ```
44
 
45
  4. Run your app:
46
 
 
61
 
62
  The chatbot may require configuration through environment variables. Check the `.env` file for details.
63
 
 
64
 
 
 
 
65
 
66
+
67
+
 
 
68
  Create an OPENAI_API_KEY here https://platform.openai.com/api-keys
69
 
70