Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import json
|
2 |
+
import gradio as gr
|
3 |
+
|
4 |
+
def update_swagger(swagger_content):
|
5 |
+
try:
|
6 |
+
# Load existing swagger.json content
|
7 |
+
swagger_data = json.loads(swagger_content)
|
8 |
+
|
9 |
+
# Update the info object
|
10 |
+
swagger_data['info'] = {
|
11 |
+
"title": "My API",
|
12 |
+
"version": "1.0.0",
|
13 |
+
"description": "Your API description"
|
14 |
+
}
|
15 |
+
|
16 |
+
# Convert back to JSON string
|
17 |
+
updated_swagger = json.dumps(swagger_data, indent=2)
|
18 |
+
return updated_swagger
|
19 |
+
except Exception as e:
|
20 |
+
return f"Error updating swagger.json: {e}"
|
21 |
+
|
22 |
+
demo = gr.Interface(
|
23 |
+
fn=update_swagger,
|
24 |
+
inputs=gr.Textbox(lines=20, label="Input Swagger JSON"),
|
25 |
+
outputs=gr.Textbox(lines=20, label="Updated Swagger JSON")
|
26 |
+
)
|
27 |
+
|
28 |
+
demo.launch()
|