Windows css fixend and backend #17

Merged
sageTheDm merged 6 commits from React-Group/ai-virtual-assistant:main into main 2024-09-17 13:51:15 +02:00
2 changed files with 4 additions and 3 deletions
Showing only changes of commit d70c8d28f3 - Show all commits

View file

@ -280,6 +280,7 @@ header a:hover {
color: white;
border: none;
padding: 0;
margin: 5px;
cursor: pointer;
transition: transform 0.2s ease-in-out;
}
@ -326,7 +327,8 @@ header a:hover {
}
.input button {
padding: 12px 20px;
padding:1em;
margin: 5px;
background-color: var(--input-button-color);
color: white;
border: none;

View file

@ -40,12 +40,11 @@ def index():
system += "The chat log is now finished."
ai_response = "AI: " + api.send_message(user_message, 5, system)
ai_response = "AI: " + api.send_message(user_message, 4, system)
messages.append(ai_response)
return render_template('index.html', messages=messages)
@APP.route('/faq')
def faq():
return render_template('faq.html')