Spaces:
Sleeping
Sleeping
topic_sentence_output
Browse files
app.py
CHANGED
@@ -138,8 +138,9 @@ with gr.Blocks() as demo:
|
|
138 |
|
139 |
|
140 |
with gr.Column():
|
141 |
-
topic_output = gr.Textbox(label="Generated Topic
|
142 |
points_output = gr.Textbox(label="Generated Points")
|
|
|
143 |
|
144 |
|
145 |
generate_topics_button.click(
|
@@ -181,7 +182,7 @@ with gr.Blocks() as demo:
|
|
181 |
points_input,
|
182 |
user_generate_topic_sentences_prompt
|
183 |
],
|
184 |
-
outputs=
|
185 |
)
|
186 |
|
187 |
demo.launch()
|
|
|
138 |
|
139 |
|
140 |
with gr.Column():
|
141 |
+
topic_output = gr.Textbox(label="Generated Topic")
|
142 |
points_output = gr.Textbox(label="Generated Points")
|
143 |
+
topic_sentence_output = gr.Textbox(label="Generated Topic Sentences")
|
144 |
|
145 |
|
146 |
generate_topics_button.click(
|
|
|
182 |
points_input,
|
183 |
user_generate_topic_sentences_prompt
|
184 |
],
|
185 |
+
outputs=topic_sentence_output
|
186 |
)
|
187 |
|
188 |
demo.launch()
|