Dooratre commited on
Commit
2cf06ef
·
verified ·
1 Parent(s): da3d8c7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -30,8 +30,7 @@ download_spacy_model()
30
  nlp = spacy.load("en_core_web_sm")
31
 
32
  app = Flask(__name__)
33
- with open('python.txt', 'r') as file:
34
- Python = file.read()
35
 
36
  # Load the JSON data from the file
37
  with open('ai_chatbot_data.json', 'r') as file:
@@ -40,8 +39,8 @@ with open('ai_chatbot_data.json', 'r') as file:
40
 
41
 
42
 
43
- template = "Message: {message}\n\nSentiment Analysis: {sentiment}\n\nConversation Now Between you and user: {history}\n\nDate and Time: {date_time}\n\nBitcoin Price: ${bitcoin_price}\n\nBitcoin history from 1-jan-2024 to today the tidy is date-open-high-low-close-adj close-volum: {database_tag}\n\nYour system: {json_data}.\n\nCreated by this code:{Python}\n\nResponse:"
44
- prompt = PromptTemplate(template=template, input_variables=["message", "sentiment", "history", "date_time", "bitcoin_price", "database_tag","Python", "json_data"])
45
  conversation_history = []
46
 
47
  MAX_HISTORY_LENGTH = 55
@@ -113,7 +112,7 @@ def submit():
113
  history_stemmed_tokens = [ps.stem(token) for token in history_tokens]
114
  history_lemmatized_tokens = [lemmatizer.lemmatize(token) for token in history_tokens]
115
 
116
- model_input = prompt.format(message=user_input, sentiment=sentiment, history="<br>".join(conversation_history), database_tag=div_content, date_time=current_time, bitcoin_price=bitcoin_price, json_data=json_data,history_tokens=history_tokens,history_stemmed_tokens=history_stemmed_tokens,history_lemmatized_tokens=history_lemmatized_tokens,Python=Python)
117
 
118
  response = llm(model_input, context="<br>".join(conversation_history))
119
 
 
30
  nlp = spacy.load("en_core_web_sm")
31
 
32
  app = Flask(__name__)
33
+
 
34
 
35
  # Load the JSON data from the file
36
  with open('ai_chatbot_data.json', 'r') as file:
 
39
 
40
 
41
 
42
+ template = "Message: {message}\n\nSentiment Analysis: {sentiment}\n\nConversation Now Between you and user: {history}\n\nDate and Time: {date_time}\n\nBitcoin Price: ${bitcoin_price}\n\nBitcoin history from 1-jan-2024 to today the tidy is date-open-high-low-close-adj close-volum: {database_tag}\n\nYour system: {json_data}.\n\nResponse:"
43
+ prompt = PromptTemplate(template=template, input_variables=["message", "sentiment", "history", "date_time", "bitcoin_price", "database_tag", "json_data"])
44
  conversation_history = []
45
 
46
  MAX_HISTORY_LENGTH = 55
 
112
  history_stemmed_tokens = [ps.stem(token) for token in history_tokens]
113
  history_lemmatized_tokens = [lemmatizer.lemmatize(token) for token in history_tokens]
114
 
115
+ model_input = prompt.format(message=user_input, sentiment=sentiment, history="<br>".join(conversation_history), database_tag=div_content, date_time=current_time, bitcoin_price=bitcoin_price, json_data=json_data,history_tokens=history_tokens,history_stemmed_tokens=history_stemmed_tokens,history_lemmatized_tokens=history_lemmatized_tokens)
116
 
117
  response = llm(model_input, context="<br>".join(conversation_history))
118