Spaces:
Sleeping
Sleeping
File size: 306 Bytes
9b3af04 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import os
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=None,
methods=['GET', 'POST', 'PUT', 'DELETE'],
auth_token=os.getenv("OPENAPI_AUTH_TOKEN")
).launch(mcp_server=True)
|