layers2024 commited on
Commit
3be0d51
Β·
verified Β·
1 Parent(s): 05a2fbe

Add app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import gradio as gr
3
+
4
+ gr.load_openapi(
5
+ openapi_spec="https://raw.githubusercontent.com/stripe/openapi/refs/heads/master/openapi/spec3.json",
6
+ base_url="https://api.stripe.com/v1",
7
+ paths=None,
8
+ methods=['GET', 'POST', 'PUT', 'DELETE'],
9
+ ).launch(mcp_server=True)