AlexCasF's picture
Update app.py
909a74d
raw
history blame
No virus
361 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.text("für Manninger by Alex")
st.divider()
question = st.text_area("Frage hier reinkopieren, dann Str+Enter")
if question.strip():
answer = qna_bot.query(question)
st.write(answer)