Spaces:
Runtime error
Runtime error
Commit
Β·
4459ac3
1
Parent(s):
80fc480
Update app.py
Browse files
app.py
CHANGED
@@ -109,15 +109,18 @@ with gr.Blocks(css=css) as demo:
|
|
109 |
|
110 |
|
111 |
with gr.Column(elem_id="col-container"):
|
112 |
-
|
113 |
-
dirs = os.listdir( path )
|
114 |
-
for file in dirs:
|
115 |
-
file
|
116 |
gr.Markdown("""# Chat with Needs Assessment Gurus (Past and Present)
|
117 |
## Ask questions of experts on needs assessments, get responses from *needs assessment* version of ChatGPT.
|
118 |
Ask questions of all of them, or pick your guru.""",
|
119 |
elem_id="header")
|
120 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
with gr.Row():
|
122 |
with gr.Column():
|
123 |
chatbot = gr.Chatbot(elem_id="chatbox")
|
|
|
109 |
|
110 |
|
111 |
with gr.Column(elem_id="col-container"):
|
112 |
+
|
|
|
|
|
|
|
113 |
gr.Markdown("""# Chat with Needs Assessment Gurus (Past and Present)
|
114 |
## Ask questions of experts on needs assessments, get responses from *needs assessment* version of ChatGPT.
|
115 |
Ask questions of all of them, or pick your guru.""",
|
116 |
elem_id="header")
|
117 |
+
|
118 |
+
path = "/embeddings"
|
119 |
+
dirs = os.listdir( path )
|
120 |
+
for file in dirs:
|
121 |
+
gr.Markdown(file)
|
122 |
+
|
123 |
+
|
124 |
with gr.Row():
|
125 |
with gr.Column():
|
126 |
chatbot = gr.Chatbot(elem_id="chatbox")
|