File size: 621 Bytes
fdfb0c4 cca6750 b8b0b89 52338d4 b8b0b89 52338d4 b8b0b89 1c13312 b8b0b89 1c13312 934d9a2 b8b0b89 235f64d b8b0b89 235f64d b8b0b89 235f64d b8b0b89 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import streamlit as st
from controller import Controller
from view.app_header import app_header
from view.app_sidebar import app_sidebar
from view.app_chat import app_chat
## Streamlit configuration (holds the session and session history as well)
st.set_page_config(
page_title="Custom Transformers can realy do anything...",
page_icon="π"
)
# Create an instance of Controller with agentConfig ## holds all data, config and settings
controller = Controller()
## sidebar for context & config
app_sidebar(controller)
## app header
app_header(controller)
## Main content the chat
app_chat(controller) |