Dooratre commited on
Commit
ebfadeb
·
verified ·
1 Parent(s): d3ed3a8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -7
app.py CHANGED
@@ -35,6 +35,13 @@ app = Flask(__name__)
35
  with open('ai_chatbot_data.json', 'r') as file:
36
  json_data = json.load(file)
37
 
 
 
 
 
 
 
 
38
  url = "https://dooratre-info.hf.space/?logs=container&__sign=eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sIm9uQmVoYWxmT2YiOnsia2luZCI6InVzZXIiLCJfaWQiOiI2NWIyYzMyNjJiZTk2NjBmMGIxMjg0MDAiLCJ1c2VyIjoiRG9vcmF0cmUifSwiaWF0IjoxNzEyNjgwNTY4LCJzdWIiOiIvc3BhY2VzL0Rvb3JhdHJlL2luZm8iLCJleHAiOjE3MTI3NjY5NjgsImlzcyI6Imh0dHBzOi8vaHVnZ2luZ2ZhY2UuY28ifQ.R_PX6Hw5SMheYTQWPGe1Qla9q8gVBU0mAFF_u8Iad06jSpZ9sPzZqquSowWn7PGVLRYBW21DnvqSwXIoNZ4CAA"
39
 
40
  response = requests.get(url)
@@ -47,18 +54,12 @@ else:
47
  print("No div with id=45 found on the page.")
48
  database_tag=div_content
49
 
50
-
51
- template = "Message: {message}\n\nSentiment Analysis: {sentiment}\n\nConversation History: {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:"
52
- prompt = PromptTemplate(template=template, input_variables=["message", "sentiment", "history", "date_time", "bitcoin_price", "database_tag", "json_data"])
53
- conversation_history = []
54
-
55
- MAX_HISTORY_LENGTH = 55
56
-
57
  def update_conversation_history(message):
58
  if len(conversation_history) >= MAX_HISTORY_LENGTH:
59
  conversation_history.pop(0)
60
  conversation_history.append(message)
61
 
 
62
  def get_bitcoin_price():
63
  current_time = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
64
  url = 'https://api.coindesk.com/v1/bpi/currentprice.json'
 
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 History: {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
44
+
45
  url = "https://dooratre-info.hf.space/?logs=container&__sign=eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sIm9uQmVoYWxmT2YiOnsia2luZCI6InVzZXIiLCJfaWQiOiI2NWIyYzMyNjJiZTk2NjBmMGIxMjg0MDAiLCJ1c2VyIjoiRG9vcmF0cmUifSwiaWF0IjoxNzEyNjgwNTY4LCJzdWIiOiIvc3BhY2VzL0Rvb3JhdHJlL2luZm8iLCJleHAiOjE3MTI3NjY5NjgsImlzcyI6Imh0dHBzOi8vaHVnZ2luZ2ZhY2UuY28ifQ.R_PX6Hw5SMheYTQWPGe1Qla9q8gVBU0mAFF_u8Iad06jSpZ9sPzZqquSowWn7PGVLRYBW21DnvqSwXIoNZ4CAA"
46
 
47
  response = requests.get(url)
 
54
  print("No div with id=45 found on the page.")
55
  database_tag=div_content
56
 
 
 
 
 
 
 
 
57
  def update_conversation_history(message):
58
  if len(conversation_history) >= MAX_HISTORY_LENGTH:
59
  conversation_history.pop(0)
60
  conversation_history.append(message)
61
 
62
+
63
  def get_bitcoin_price():
64
  current_time = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
65
  url = 'https://api.coindesk.com/v1/bpi/currentprice.json'