The-Adnan-Syed commited on
Commit
5e24253
·
verified ·
1 Parent(s): d36c045

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -38,17 +38,17 @@ vectordb = Chroma(persist_directory=persist_directory, embedding_function=embedd
38
 
39
  llm = ChatOpenAI(model_name="gpt-3.5-turbo", temperature=0, api_key="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")
40
 
41
- col1, col2 = st.columns([1, 3])
42
 
43
  # Column 1 for the image
44
  with col1:
45
- st.image("TZ Logo.png", width=80)
46
 
47
  # Column 2 for the markdown text
48
  with col2:
49
  st.markdown('<h1 style="font-family:Lora;color:darkred;text-align:center;">💬 TeeZee Chatbot</h1>', unsafe_allow_html=True)
50
 
51
- st.markdown('<i><h3 style="font-family:Arial;color:darkred;text-align:center;font-size:20px;padding-left:50px">Your AI Assistant To Answer Queries!</h3><i>',unsafe_allow_html=True)
52
 
53
 
54
 
 
38
 
39
  llm = ChatOpenAI(model_name="gpt-3.5-turbo", temperature=0, api_key="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")
40
 
41
+ col1, col2 = st.columns([2, 2])
42
 
43
  # Column 1 for the image
44
  with col1:
45
+ st.image("TZ Logo.png", width=100)
46
 
47
  # Column 2 for the markdown text
48
  with col2:
49
  st.markdown('<h1 style="font-family:Lora;color:darkred;text-align:center;">💬 TeeZee Chatbot</h1>', unsafe_allow_html=True)
50
 
51
+ # st.markdown('<i><h3 style="font-family:Arial;color:darkred;text-align:center;font-size:20px;padding-left:50px">Your AI Assistant To Answer Queries!</h3><i>',unsafe_allow_html=True)
52
 
53
 
54