Dooratre commited on
Commit
59a1e79
·
verified ·
1 Parent(s): c757443

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -30,14 +30,18 @@ download_spacy_model()
30
  nlp = spacy.load("en_core_web_sm")
31
 
32
  app = Flask(__name__)
 
 
33
 
34
  # Load the JSON data from the file
35
  with open('ai_chatbot_data.json', 'r') as file:
36
  json_data = json.load(file)
37
 
 
 
38
 
39
- 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:"
40
- prompt = PromptTemplate(template=template, input_variables=["message", "sentiment", "history", "date_time", "bitcoin_price", "database_tag", "json_data"])
41
  conversation_history = []
42
 
43
  MAX_HISTORY_LENGTH = 55
@@ -109,7 +113,7 @@ def submit():
109
  history_stemmed_tokens = [ps.stem(token) for token in history_tokens]
110
  history_lemmatized_tokens = [lemmatizer.lemmatize(token) for token in history_tokens]
111
 
112
- 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)
113
 
114
  response = llm(model_input, context="<br>".join(conversation_history))
115
 
 
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:
38
  json_data = json.load(file)
39
 
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
  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