Vlad-T commited on
Commit
9d717fc
·
verified ·
1 Parent(s): 942c1b3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +10 -7
README.md CHANGED
@@ -14,18 +14,21 @@ hf_oauth_expiration_minutes: 480
14
 
15
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
16
 
17
- Usage
 
 
 
18
  1. Clone this repository
19
  2. Install the required dependencies:
20
- ---
21
  pip install -r requirements.txt
22
- ---
23
  3. create a .env file with your OpenAI API key:
24
- ---
25
  OPENAI_API_KEY=your_key_here
26
  OPENAI_MODEL_ID=gpt-4o-mini # or gpt-4o for higher accuracy
27
- ---
28
  4. Run the application:
29
- ---
30
  python app.py
31
- ---
 
14
 
15
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
16
 
17
+
18
+ ## Usage
19
+
20
+
21
  1. Clone this repository
22
  2. Install the required dependencies:
23
+ ```bash
24
  pip install -r requirements.txt
25
+ ```
26
  3. create a .env file with your OpenAI API key:
27
+ ```
28
  OPENAI_API_KEY=your_key_here
29
  OPENAI_MODEL_ID=gpt-4o-mini # or gpt-4o for higher accuracy
30
+ ```
31
  4. Run the application:
32
+ ```bash
33
  python app.py
34
+ ```