lukestanley commited on
Commit
38a55db
·
1 Parent(s): c995e6d

Docs: Add local usage instructions for running the Gradio web server GUI

Browse files
Files changed (1) hide show
  1. README.md +6 -3
README.md CHANGED
@@ -89,16 +89,19 @@ These config options are likely to need tweaking. Please check out https://llama
89
 
90
  ### Local Usage
91
 
92
- ChillTranslator can be used locally to improve specific texts. This is how to see it in action:
 
93
  ```python
94
  python3 chill.py
95
  ```
96
-
97
  For improving a specific text of your choice, use the `-t` flag followed by your text enclosed in quotes:
98
  ```bash
99
  python3 chill.py -t "Your text goes here"
100
  ```
101
-
 
 
 
102
  Or chill can be imported as a module, with the improvement_loop function provided the text to improve.
103
 
104
  ## Contributing 🤝
 
89
 
90
  ### Local Usage
91
 
92
+ ChillTranslator can be used locally to improve specific texts.
93
+ This is how to see it in action from the command line with a default text:
94
  ```python
95
  python3 chill.py
96
  ```
 
97
  For improving a specific text of your choice, use the `-t` flag followed by your text enclosed in quotes:
98
  ```bash
99
  python3 chill.py -t "Your text goes here"
100
  ```
101
+ To run the Gradio web server GUI:
102
+ ```python
103
+ python3 app.py
104
+ ```
105
  Or chill can be imported as a module, with the improvement_loop function provided the text to improve.
106
 
107
  ## Contributing 🤝