Spaces:
Running
Running
File size: 256 Bytes
b0fc878 |
1 2 3 4 5 6 7 8 9 10 |
import gradio as gr
gr.load_openapi(
openapi_spec="https://petstore3.swagger.io/api/v3/openapi.json",
base_url="https://petstore3.swagger.io/api/v3/",
paths=[".*pet.*"],
methods=['GET', 'POST', 'PUT', 'DELETE'],
).launch(mcp_server=True)
|