File size: 379 Bytes
91d2b07 f820cd2 91d2b07 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# import streamlit as st
# import time
# from langserve import RemoteRunnable
from streamlit.runtime.scriptrunner import get_script_run_ctx
import streamlit as st
from pages.page_base import chat_interface
chat_title = "Simple Chat App"
url = "https://hugsid-backend.hf.space/simple"
page_hash = get_script_run_ctx().page_script_hash
chat_interface(chat_title, page_hash, url)
|