如何使用Postman调用使用Gradio部署的RESTful API?

zpgglvta  于 2023-11-18  发布在  Postman
关注(0)|答案(1)|浏览(351)

我正在使用Gradio documentation的基本Gradio接口:

import gradio as gr

def greet(name):
    return "Hello " + name + "!"

demo = gr.Interface(fn=greet, inputs="text", outputs="text")

demo.launch()

字符串
接口是:


的数据
我相信这部署了一个RESTful API,因为它在接口的页脚中说“通过API使用”:



如何使用Postman调用REST风格的API?
我试探着:



但如屏幕截图所示,我得到了错误消息:

{"detail":"Not Found"}


“通过API使用”指向的页面表示:



但我不想用Gradio客户端
更新:使用端点http://localhost:7861/api/predict似乎效果更好,但我仍在试图弄清楚密钥的名称是什么:

我试着添加一个身体,但这也不起作用:

0h4hbjxa

0h4hbjxa1#

我在https://github.com/aiplaybookin/gradio-demo上找到了答案:
使用https://hoppscotch.iohttps://www.postman.com/

在我的例子中:


的数据
JSON payload:

{"data": ["test"]}

字符串

相关问题