Sharyar commited on
Commit ·
46fdc61
1
Parent(s): d03d436
Fix: Update model ID to meta-llama/Llama-3.2-3B-Instruct
Browse files
app.py
CHANGED
|
@@ -5,7 +5,7 @@ import os
|
|
| 5 |
import re
|
| 6 |
|
| 7 |
# Try to use Inference API, but fall back to rule-based if it fails
|
| 8 |
-
MODEL_ID = "
|
| 9 |
token = os.getenv("HUGGING_FACE_HUB_TOKEN")
|
| 10 |
|
| 11 |
def rule_based_improvement(text: str) -> str:
|
|
|
|
| 5 |
import re
|
| 6 |
|
| 7 |
# Try to use Inference API, but fall back to rule-based if it fails
|
| 8 |
+
MODEL_ID = "meta-llama/Llama-3.2-3B-Instruct"
|
| 9 |
token = os.getenv("HUGGING_FACE_HUB_TOKEN")
|
| 10 |
|
| 11 |
def rule_based_improvement(text: str) -> str:
|