Spaces:
Sleeping
Sleeping
File size: 197 Bytes
12ee8ba |
1 2 3 4 5 6 7 8 9 10 11 |
import streamlit as st
import src.prompt_config as prompt_params
def main():
st.title("Explainable AI")
st.markdown(prompt_params.APP_INTRODUCTION)
if __name__ == '__main__':
main() |