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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -38,7 +38,7 @@ 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([2, 2])
42
 
43
  # Column 1 for the image
44
  with col1:
@@ -46,7 +46,7 @@ with col1:
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
 
 
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:
 
46
 
47
  # Column 2 for the markdown text
48
  with col2:
49
+ st.markdown('<h1 style="font-family:Arial;color:darkred;text-align:center;"><b>💬 TeeZee Chatbot</b></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