Spaces:
Sleeping
Sleeping
Commit
·
52317b8
1
Parent(s):
51d37a8
update
Browse files
controllers/gra_03_programfromdocgas/programfromdocAI.py
CHANGED
@@ -59,9 +59,13 @@ gradio_interface = gr.Interface(
|
|
59 |
fn=process_file,
|
60 |
inputs=[
|
61 |
"file",
|
62 |
-
gr.Textbox(label="Additional Notes", lines=10,value=val),
|
63 |
-
gr.Textbox(label="Folder Name",value="test_folders"),
|
64 |
-
gr.Textbox(label="github token",value="***********************"),
|
65 |
],
|
66 |
outputs="text",
|
|
|
|
|
|
|
|
|
67 |
)
|
|
|
59 |
fn=process_file,
|
60 |
inputs=[
|
61 |
"file",
|
62 |
+
gr.Textbox(label="Additional Notes", lines=10, value=val),
|
63 |
+
gr.Textbox(label="Folder Name", value="test_folders"),
|
64 |
+
gr.Textbox(label="github token", value="***********************"),
|
65 |
],
|
66 |
outputs="text",
|
67 |
+
examples=[
|
68 |
+
["example1.txt", "Example notes 1", "example_folder_1", "example_token_1"],
|
69 |
+
["example2.txt", "Example notes 2", "example_folder_2", "example_token_2"]
|
70 |
+
]
|
71 |
)
|