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 315 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
20
21
22
23
  1. import streamlit as st
  2. from components import chat, sidebar
  3. from config import page_config, page_session
  4. # from lib.agents import
  5. def main():
  6. # Page session
  7. page_session()
  8. # Page config
  9. page_config()
  10. # Sidebar
  11. sidebar()
  12. # Chat UI
  13. chat()
  14. if __name__ == "__main__":
  15. main()
Tip!

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

Comments

Loading...