Spaces:
Sleeping
Sleeping
File size: 233 Bytes
43f2054 |
1 2 3 4 5 6 7 8 9 |
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/",
methods=['GET', 'POST', 'PUT', 'DELETE'],
).launch(mcp_server=True)
|