Spaces:
Runtime error
Runtime error
File size: 287 Bytes
c750685 | 1 2 3 4 5 6 7 8 9 10 11 12 |
import os
import gradio as gr
gr.load_openapi(
openapi_spec="https://rest.canopyapi.co/api/v1/openapi.json",
base_url="https://rest.canopyapi.co/api/amazon/",
paths=None,
methods=['GET', 'POST'],
auth_token=os.getenv("OPENAPI_AUTH_TOKEN")
).launch(mcp_server=True)
|