Spaces:
Runtime error
Runtime error
kwabs22
commited on
Commit
·
7e7e06d
1
Parent(s):
fb6adb6
Config based info to help users
Browse files
app.py
CHANGED
@@ -1226,10 +1226,11 @@ 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 |
-
gr.Code(value=json.dumps(originalconfigatbeinningofthisspace, indent=2), language="json") #originalconfigatbeinningofthisspace)
|
1230 |
with gr.Column(scale=2):
|
1231 |
-
gr.HTML(claude3_5_06072024configtips)
|
1232 |
with gr.Column(scale=1):
|
|
|
1233 |
gr.HTML(tipsupdatedconfigatbeinningofthisspace)
|
1234 |
|
1235 |
with gr.Tab("Test and Edit Config"):
|
|
|
1226 |
|
1227 |
with gr.Row():
|
1228 |
with gr.Column(scale=1):
|
1229 |
+
gr.Code(value=json.dumps(json.loads(originalconfigatbeinningofthisspace), indent=2), language="json") #originalconfigatbeinningofthisspace)
|
1230 |
with gr.Column(scale=2):
|
1231 |
+
gr.HTML(f"{claude3_5_06072024configtips.replace(" ", " ").replace("\n", "<br>")}")
|
1232 |
with gr.Column(scale=1):
|
1233 |
+
gr.Code(value=json.dumps(json.loads(tipsupdatedconfigatbeinningofthisspace), indent=2), language="json")
|
1234 |
gr.HTML(tipsupdatedconfigatbeinningofthisspace)
|
1235 |
|
1236 |
with gr.Tab("Test and Edit Config"):
|