Skip to content

Commit

Permalink
add chatbot logo
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanrmmr committed Oct 21, 2022
1 parent ef16f5b commit 7ceeae6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Binary file added chatbot_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 7 additions & 2 deletions streamlit_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import math

import app_design
# apply design changes
# apply design changes
app_design.apply_design()

PROMPT_PREFIX = '''
Expand Down Expand Up @@ -225,7 +225,12 @@ def initialize_openai_api():
openai.api_key = st.secrets['secret_key']


st.title('TUM.ai Chatbot')

title_col1, title_col1, title_col1 = st.columns([1,0.1,0.4])
with title_col1:
st.title('Hi, how can I help you?')
with title_col3:
st.image('chatbot_logo.png')

initialize_openai_api()
user_input = st.text_input("", "")
Expand Down

0 comments on commit 7ceeae6

Please sign in to comment.