Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -42,8 +42,8 @@ def compute_pca(data):
|
|
42 |
|
43 |
def text_editor_app():
|
44 |
with gr.Blocks() as demo:
|
45 |
-
|
46 |
-
|
47 |
for i in range(4): # Assuming we have 4 entries
|
48 |
with gr.Column():
|
49 |
id_input = gr.Textbox(label=f"Identifier {i+1}")
|
|
|
42 |
|
43 |
def text_editor_app():
|
44 |
with gr.Blocks() as demo:
|
45 |
+
identifier_inputs = []
|
46 |
+
text_inputs = []
|
47 |
for i in range(4): # Assuming we have 4 entries
|
48 |
with gr.Column():
|
49 |
id_input = gr.Textbox(label=f"Identifier {i+1}")
|