AlexCasF's picture
Update app.py
cab784d
raw
history blame contribute delete
No virus
327 Bytes
import os
from embedchain import App
import streamlit as st
qna_bot=App()
qna_bot.add("Az_600_word.docx", data_type="docx")
st.title("πŸŽ“ AZ-600 LearningBot πŸ€–")
st.divider()
question = st.text_area("Frage hier reinkopieren, dann Str+Enter")
if question.strip():
answer = qna_bot.query(question)
st.write(answer)