Spaces:
Runtime error
Runtime error
Kajise Org
commited on
Commit
·
8f6edb5
1
Parent(s):
267551d
Fix layout for mobile view
Browse files
app.py
CHANGED
@@ -80,11 +80,9 @@ with Gradio.Blocks(theme=custom_theme, analytics_enabled=False, css=".generating
|
|
80 |
with Gradio.Column():
|
81 |
Gradio.Markdown(
|
82 |
"""
|
83 |
-
## GPT4ALL-
|
84 |
Uses falcon (q4_0)
|
85 |
|
86 |
-
*(added a little razzle dazzle aka web scraping, disabled in public revision)*
|
87 |
-
|
88 |
Type in the box below and click the button to generate answers to your most pressing questions!
|
89 |
"""
|
90 |
)
|
@@ -92,7 +90,7 @@ with Gradio.Blocks(theme=custom_theme, analytics_enabled=False, css=".generating
|
|
92 |
with Gradio.Row():
|
93 |
with Gradio.Box():
|
94 |
instruction = Gradio.components.Textbox(placeholder="What does the Philippine flag represent?", label="Input", info="What things do you want to ask GPT4ALL?")
|
95 |
-
scraping = Gradio.Checkbox(value=False, label="Perform web scraping for unknown information", info="Scraping")
|
96 |
scrape_type = Gradio.Radio(["Web scraping", "Short descriptions"], label="Scraping tactic", info="Want GPT4ALL to utilize web scraping? If so—how thorough?")
|
97 |
|
98 |
with Gradio.Box():
|
|
|
80 |
with Gradio.Column():
|
81 |
Gradio.Markdown(
|
82 |
"""
|
83 |
+
## GPT4ALL-Falcon
|
84 |
Uses falcon (q4_0)
|
85 |
|
|
|
|
|
86 |
Type in the box below and click the button to generate answers to your most pressing questions!
|
87 |
"""
|
88 |
)
|
|
|
90 |
with Gradio.Row():
|
91 |
with Gradio.Box():
|
92 |
instruction = Gradio.components.Textbox(placeholder="What does the Philippine flag represent?", label="Input", info="What things do you want to ask GPT4ALL?")
|
93 |
+
scraping = Gradio.Checkbox(value=False, label="Perform web scraping for unknown information", info="Scraping (Disabled)")
|
94 |
scrape_type = Gradio.Radio(["Web scraping", "Short descriptions"], label="Scraping tactic", info="Want GPT4ALL to utilize web scraping? If so—how thorough?")
|
95 |
|
96 |
with Gradio.Box():
|