6 lines
109 B
Python
6 lines
109 B
Python
|
|
import streamlit as st
|
||
|
|
from webui_pages.utils import *
|
||
|
|
|
||
|
|
def knowledge_base_page():
|
||
|
|
st.write(123)
|
||
|
|
pass
|