Spaces:
Sleeping
Sleeping
Commit
·
44d3673
1
Parent(s):
45f89e6
init
Browse files
app.py
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
import re
|
3 |
+
|
4 |
+
from transformers import pipeline
|
5 |
+
|
6 |
+
|
7 |
+
|
8 |
+
st.title("Question - Answering AI App")
|
9 |
+
st.write("---")
|
10 |
+
st.write("### Give Content to the AI and quiz it based on the content.")
|
11 |
+
st.warning("**Powered by AI Language Models...**")
|
12 |
+
|
13 |
+
st.write("---")
|