Spaces:
Sleeping
Sleeping
Major Overhaul in data handling, adding feedback, qa for questions
Browse filesActually this updates were made in the commit just before this but i'm writing the changes here.
So, data handling is completely changes; it optimized with session_state now, so the rerun handling has seen amazing jump.
It was also required since feedback would not have been possibel without it.
Next, the feedback! now users can update the question if they like and send us that data using save_feedback that saves this data in a json file.
Next, the Quality analysis for the Question generated. Though it was not much needed as of now for the question (options are a different thing), it has been implemented now.
app.py
CHANGED
@@ -389,6 +389,7 @@ def main():
|
|
389 |
st.write("No feedback data available yet.")
|
390 |
|
391 |
print("********************************************************************************")
|
|
|
392 |
|
393 |
if __name__ == '__main__':
|
394 |
main()
|
|
|
389 |
st.write("No feedback data available yet.")
|
390 |
|
391 |
print("********************************************************************************")
|
392 |
+
|
393 |
|
394 |
if __name__ == '__main__':
|
395 |
main()
|