Create USER_GUIDE.md
Browse files- USER_GUIDE.md +25 -0
USER_GUIDE.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# User Guide — Talk2Law
|
| 2 |
+
|
| 3 |
+
## How to use the Hugging Face Space
|
| 4 |
+
1. Open the app: [Talk2Law](https://huggingface.co/spaces/YOUR_USERNAME/YOUR_SPACE_NAME)
|
| 5 |
+
2. Paste any legal or administrative text into the text box.
|
| 6 |
+
3. Click **Run**.
|
| 7 |
+
4. Wait a few seconds for the AI to generate a plain-English version.
|
| 8 |
+
|
| 9 |
+
### Example
|
| 10 |
+
**Input:**
|
| 11 |
+
Pursuant to Article L.221-18 of the French Consumer Code, the consumer has a 14-day right of withdrawal.
|
| 12 |
+
|
| 13 |
+
**Output (example):**
|
| 14 |
+
You have 14 days to cancel your purchase without giving any reason.
|
| 15 |
+
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
## Run locally (optional)
|
| 19 |
+
If you prefer to run the app on your computer:
|
| 20 |
+
|
| 21 |
+
```bash
|
| 22 |
+
git clone https://huggingface.co/spaces/YOUR_USERNAME/YOUR_SPACE_NAME
|
| 23 |
+
cd YOUR_SPACE_NAME
|
| 24 |
+
pip install -r requirements.txt
|
| 25 |
+
python app.py
|