Update app.py
Browse files
app.py
CHANGED
@@ -17,6 +17,7 @@ nltk.download('punkt')
|
|
17 |
nltk.download('wordnet')
|
18 |
|
19 |
def download_spacy_model():
|
|
|
20 |
try:
|
21 |
spacy.load("en_core_web_sm")
|
22 |
except OSError:
|
@@ -25,6 +26,8 @@ def download_spacy_model():
|
|
25 |
|
26 |
download_spacy_model()
|
27 |
|
|
|
|
|
28 |
app = Flask(__name__)
|
29 |
|
30 |
# Load the JSON data from the file
|
@@ -35,7 +38,6 @@ with open('info.txt', 'r') as file:
|
|
35 |
database_content = file.read()
|
36 |
database_tag = database_content
|
37 |
|
38 |
-
nlp = spacy.load("en_core_web_sm")
|
39 |
|
40 |
template = "Message: {message}\n\nConversation History: {history}\n\nDate and Time: {date_time}\n\nBitcoin Price: ${bitcoin_price}\n\nBitcoin history from 1-jan-2024 to today: {database_tag}\n\nYour system: {json_data}.\n\nResponse:"
|
41 |
prompt = PromptTemplate(template=template, input_variables=["message","history", "date_time", "bitcoin_price", "database_tag", "json_data"])
|
|
|
17 |
nltk.download('wordnet')
|
18 |
|
19 |
def download_spacy_model():
|
20 |
+
import spacy # Import spacy within the function scope
|
21 |
try:
|
22 |
spacy.load("en_core_web_sm")
|
23 |
except OSError:
|
|
|
26 |
|
27 |
download_spacy_model()
|
28 |
|
29 |
+
nlp = spacy.load("en_core_web_sm")
|
30 |
+
|
31 |
app = Flask(__name__)
|
32 |
|
33 |
# Load the JSON data from the file
|
|
|
38 |
database_content = file.read()
|
39 |
database_tag = database_content
|
40 |
|
|
|
41 |
|
42 |
template = "Message: {message}\n\nConversation History: {history}\n\nDate and Time: {date_time}\n\nBitcoin Price: ${bitcoin_price}\n\nBitcoin history from 1-jan-2024 to today: {database_tag}\n\nYour system: {json_data}.\n\nResponse:"
|
43 |
prompt = PromptTemplate(template=template, input_variables=["message","history", "date_time", "bitcoin_price", "database_tag", "json_data"])
|