Update app.py
Browse files
app.py
CHANGED
@@ -23,3 +23,8 @@ with gr.Blocks() as demo:
|
|
23 |
msg.submit(respond_to_message, [msg, chatbot], [msg, chatbot])
|
24 |
|
25 |
demo.launch()
|
|
|
|
|
|
|
|
|
|
|
|
23 |
msg.submit(respond_to_message, [msg, chatbot], [msg, chatbot])
|
24 |
|
25 |
demo.launch()
|
26 |
+
|
27 |
+
from datasets import load_dataset
|
28 |
+
|
29 |
+
# Login using e.g. `huggingface-cli login` to access this dataset
|
30 |
+
ds = load_dataset("KadamParth/NCERT_Chemistry_11th")
|