Update app.py
Browse files
app.py
CHANGED
@@ -103,7 +103,7 @@ def submit():
|
|
103 |
history_lemmatized_tokens = [lemmatizer.lemmatize(token) for token in history_tokens]
|
104 |
|
105 |
model_input = prompt.format(message=user_input, sentiment=sentiment, history="\n".join(conversation_history),
|
106 |
-
div_content=
|
107 |
|
108 |
response = llm(model_input, context="<br>".join(conversation_history))
|
109 |
|
|
|
103 |
history_lemmatized_tokens = [lemmatizer.lemmatize(token) for token in history_tokens]
|
104 |
|
105 |
model_input = prompt.format(message=user_input, sentiment=sentiment, history="\n".join(conversation_history),
|
106 |
+
div_content=div_content, date_time=current_time, bitcoin_price=bitcoin_price, json_data=json_data)
|
107 |
|
108 |
response = llm(model_input, context="<br>".join(conversation_history))
|
109 |
|