Spaces:
Runtime error
Runtime error
kwabs22
commited on
Commit
·
bec0906
1
Parent(s):
b22d8dd
Config based info to help users
Browse files
app.py
CHANGED
@@ -1224,15 +1224,16 @@ Would you like me to elaborate on any of these ideas or show how to implement th
|
|
1224 |
|
1225 |
with gr.Row():
|
1226 |
with gr.Column(scale=1):
|
1227 |
-
display_originalconfigatbeinningofthisspace = json.loads(originalconfigatbeinningofthisspace)
|
1228 |
-
gr.
|
|
|
1229 |
with gr.Column(scale=2):
|
1230 |
display_claude3_5_06072024configtips = claude3_5_06072024configtips.replace('', ' ').replace('\n', '<br>')
|
1231 |
gr.HTML(f"<pre>{display_claude3_5_06072024configtips}</pre>")
|
1232 |
with gr.Column(scale=1):
|
1233 |
-
display_tipsupdatedconfigatbeinningofthisspace = json.loads(tipsupdatedconfigatbeinningofthisspace)
|
1234 |
-
gr.
|
1235 |
-
gr.
|
1236 |
|
1237 |
with gr.Tab("Test and Edit Config"):
|
1238 |
gr.HTML("The main issue is frequent changes add more chances for bugs in how ")
|
|
|
1224 |
|
1225 |
with gr.Row():
|
1226 |
with gr.Column(scale=1):
|
1227 |
+
display_originalconfigatbeinningofthisspace = originalconfigatbeinningofthisspace.replace('', ' ').replace('\n', '<br>') #json.loads(originalconfigatbeinningofthisspace)
|
1228 |
+
gr.HTML(f"<pre>{display_originalconfigatbeinningofthisspace}</pre>")
|
1229 |
+
#gr.Code(value=json.dumps(display_originalconfigatbeinningofthisspace, indent=2), language="json") #originalconfigatbeinningofthisspace)
|
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 |
+
display_tipsupdatedconfigatbeinningofthisspace = tipsupdatedconfigatbeinningofthisspace.replace('', ' ').replace('\n', '<br>') #json.loads(tipsupdatedconfigatbeinningofthisspace)
|
1235 |
+
gr.HTML(f"<pre>{display_tipsupdatedconfigatbeinningofthisspace}</pre>")
|
1236 |
+
#gr.Code(value=json.dumps(display_tipsupdatedconfigatbeinningofthisspace, indent=2), language="json")
|
1237 |
|
1238 |
with gr.Tab("Test and Edit Config"):
|
1239 |
gr.HTML("The main issue is frequent changes add more chances for bugs in how ")
|