我正在使用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
似乎效果更好,但我仍在试图弄清楚密钥的名称是什么:
我试着添加一个身体,但这也不起作用:
1条答案
按热度按时间0h4hbjxa1#
我在https://github.com/aiplaybookin/gradio-demo上找到了答案:
使用https://hoppscotch.io或https://www.postman.com/
application/json
在我的例子中:
的数据
JSON payload:
字符串