Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

main.py 478 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  1. import streamlit as st
  2. from components import chat, sidebar
  3. from config import page_config
  4. def main():
  5. page_config() # Contains webiste info displays in the browser tab
  6. resume = sidebar() # Sidebar of our app (resume is uploaded in the sidebar)
  7. if not resume:
  8. st.warning(body="Resume not detected", icon="⚠️")
  9. else:
  10. st.success(body="Resume is uploaded", icon="🎉")
  11. chat() # Chatbot ui
  12. if __name__ == "__main__":
  13. main()
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...