Spaces:
Running
on
Zero
Running
on
Zero
kwabs22
commited on
Commit
·
baaf1d6
1
Parent(s):
f9ba61a
Config based info to help users
Browse files
app.py
CHANGED
@@ -1226,12 +1226,14 @@ Would you like me to elaborate on any of these ideas or show how to implement th
|
|
1226 |
|
1227 |
with gr.Row():
|
1228 |
with gr.Column(scale=1):
|
1229 |
-
|
|
|
1230 |
with gr.Column(scale=2):
|
1231 |
display_claude3_5_06072024configtips = claude3_5_06072024configtips.replace('', ' ').replace('\n', '<br>')
|
1232 |
gr.HTML(f"<pre>{display_claude3_5_06072024configtips}</pre>")
|
1233 |
with gr.Column(scale=1):
|
1234 |
-
|
|
|
1235 |
gr.HTML(tipsupdatedconfigatbeinningofthisspace)
|
1236 |
|
1237 |
with gr.Tab("Test and Edit Config"):
|
|
|
1226 |
|
1227 |
with gr.Row():
|
1228 |
with gr.Column(scale=1):
|
1229 |
+
display_originalconfigatbeinningofthisspace = json.loads(originalconfigatbeinningofthisspace)
|
1230 |
+
gr.Code(value=json.dumps(display_originalconfigatbeinningofthisspace, indent=2), language="json") #originalconfigatbeinningofthisspace)
|
1231 |
with gr.Column(scale=2):
|
1232 |
display_claude3_5_06072024configtips = claude3_5_06072024configtips.replace('', ' ').replace('\n', '<br>')
|
1233 |
gr.HTML(f"<pre>{display_claude3_5_06072024configtips}</pre>")
|
1234 |
with gr.Column(scale=1):
|
1235 |
+
display_tipsupdatedconfigatbeinningofthisspace = json.loads(tipsupdatedconfigatbeinningofthisspace)
|
1236 |
+
gr.Code(value=json.dumps(display_tipsupdatedconfigatbeinningofthisspace, indent=2), language="json")
|
1237 |
gr.HTML(tipsupdatedconfigatbeinningofthisspace)
|
1238 |
|
1239 |
with gr.Tab("Test and Edit Config"):
|