Spaces:
Runtime error
Runtime error
File size: 326 Bytes
70b2fc9 a7f76fe 70b2fc9 2678de2 a7f76fe |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import sys
import logging
import streamlit as st
import haystack
logging.basicConfig(
level=logging.DEBUG,
format="%(levelname)s %(asctime)s %(name)s:%(message)s",
handlers=[logging.StreamHandler(sys.stdout)],
force=True,
)
st.title("Haystack Demo")
st.text_input("Query ...")
st.text(haystack.__version__)
|