Spaces:
Sleeping
Sleeping
test
Browse files
app.py
CHANGED
|
@@ -4,6 +4,10 @@ import requests
|
|
| 4 |
import pytz
|
| 5 |
import yaml
|
| 6 |
from tools.final_answer import FinalAnswerTool
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
import nltk
|
| 8 |
import textstat
|
| 9 |
from nltk.tokenize import word_tokenize, sent_tokenize
|
|
|
|
| 4 |
import pytz
|
| 5 |
import yaml
|
| 6 |
from tools.final_answer import FinalAnswerTool
|
| 7 |
+
import os
|
| 8 |
+
os.system('pip install nltk')
|
| 9 |
+
os.system('pip install textstat')
|
| 10 |
+
os.system('pip install collections')
|
| 11 |
import nltk
|
| 12 |
import textstat
|
| 13 |
from nltk.tokenize import word_tokenize, sent_tokenize
|