Spaces:
Build error
Build error
Rohit Diwane
commited on
Commit
Β·
781bb01
1
Parent(s):
5ec1a12
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import os
|
2 |
+
import json
|
3 |
+
import traceback
|
4 |
+
import pandas as pd
|
5 |
+
from dotenv import load_dotenv
|
6 |
+
from src.mcqgenrator.utils import read_file
|
7 |
+
from src.mcqgenrator.utils import get_table_data
|
8 |
+
import streamlit as st
|
9 |
+
from langchain.callbacks import get_openai_callback
|
10 |
+
from src.mcqgenrator.mcqgenrator import generate_evaluate_chain
|
11 |
+
from src.mcqgenrator.logger import logging
|
12 |
+
|
13 |
+
#loading json file
|
14 |
+
with open(r"D:\NLP_Specialization\Gen_AI\LangChain_LLM\mcq_gen_project-main\mcq_gen_project-main\Response.json", 'r') as file:
|
15 |
+
RESPONSE_JSON = json.load(file)
|
16 |
+
|
17 |
+
|
18 |
+
#creating a title for the app
|
19 |
+
st.title("π―MCQ's Generator Application with LangChain π¦ππ")
|
20 |
+
|
21 |
+
|
22 |
+
with st.form("user input"):
|
23 |
+
uploaded_file=st.file_uploader("upload pdf or text")
|
24 |
+
|
25 |
+
mcq_count=st.number_input("no of mcq's", min_value=3, max_value=50)
|
26 |
+
|
27 |
+
subject=st.text_input("Insert Subject",max_chars=20)
|
28 |
+
|
29 |
+
tone=st.text_input("Complexity Level Of Questions", max_chars=20, placeholder="Simple")
|
30 |
+
|
31 |
+
button=st.form_submit_button("Create MCQs")
|
32 |
+
|
33 |
+
if button and uploaded_file is not None and mcq_count and subject and tone:
|
34 |
+
with st.spinner("loading..."):
|
35 |
+
try:
|
36 |
+
text=read_file(uploaded_file)
|
37 |
+
#Count tokens and the cost of API call
|
38 |
+
with get_openai_callback() as cb:
|
39 |
+
response=generate_evaluate_chain(
|
40 |
+
{
|
41 |
+
"text": text,
|
42 |
+
"number": mcq_count,
|
43 |
+
"subject":subject,
|
44 |
+
"tone": tone,
|
45 |
+
"RESPONSE_JSON": json.dumps(RESPONSE_JSON)
|
46 |
+
}
|
47 |
+
)
|
48 |
+
#st.write(response)
|
49 |
+
|
50 |
+
except Exception as e:
|
51 |
+
traceback.print_exception(type(e), e, e.__traceback__)
|
52 |
+
st.error("Error")
|
53 |
+
|
54 |
+
else:
|
55 |
+
print(f"Total Tokens:{cb.total_tokens}")
|
56 |
+
print(f"Prompt Tokens:{cb.prompt_tokens}")
|
57 |
+
print(f"Completion Tokens:{cb.completion_tokens}")
|
58 |
+
print(f"Total Cost:{cb.total_cost}")
|
59 |
+
if isinstance(response, dict):
|
60 |
+
#Extract the quiz data from the response
|
61 |
+
quiz=response.get("quiz", None)
|
62 |
+
if quiz is not None:
|
63 |
+
table_data=get_table_data(quiz)
|
64 |
+
if table_data is not None:
|
65 |
+
df=pd.DataFrame(table_data)
|
66 |
+
df.index=df.index+1
|
67 |
+
st.table(df)
|
68 |
+
#Display the review in atext box as well
|
69 |
+
st.text_area(label="Review", value=response["review"])
|
70 |
+
else:
|
71 |
+
st.error("Error in the table data")
|
72 |
+
|
73 |
+
else:
|
74 |
+
st.write(response)
|