Spaces:
Sleeping
Sleeping
Commit
·
58b38ad
1
Parent(s):
0670cf4
updates on the requirements.txt
Browse files- app.py +3 -0
- requirements.txt +2 -1
app.py
CHANGED
@@ -18,6 +18,8 @@ QUESTIONS = [
|
|
18 |
"Genetic Chain",
|
19 |
]
|
20 |
|
|
|
|
|
21 |
with gr.Blocks(theme="dark") as demo:
|
22 |
backend = Backend()
|
23 |
with gr.Row():
|
@@ -29,6 +31,7 @@ with gr.Blocks(theme="dark") as demo:
|
|
29 |
|
30 |
openai_key = gr.Textbox(
|
31 |
label='Enter your OpenAI API key here',
|
|
|
32 |
type='password')
|
33 |
|
34 |
file = gr.File(label='Upload your .txt file here', file_types=['.txt'])
|
|
|
18 |
"Genetic Chain",
|
19 |
]
|
20 |
|
21 |
+
with open()
|
22 |
+
|
23 |
with gr.Blocks(theme="dark") as demo:
|
24 |
backend = Backend()
|
25 |
with gr.Row():
|
|
|
31 |
|
32 |
openai_key = gr.Textbox(
|
33 |
label='Enter your OpenAI API key here',
|
34 |
+
value=API_TOKEN,
|
35 |
type='password')
|
36 |
|
37 |
file = gr.File(label='Upload your .txt file here', file_types=['.txt'])
|
requirements.txt
CHANGED
@@ -1 +1,2 @@
|
|
1 |
-
fuzzywuzzy
|
|
|
|
1 |
+
fuzzywuzzy
|
2 |
+
openpyxl
|