gpt4 book ai didi

python - 如何上传文件到 Hug REST API

转载 作者:太空宇宙 更新时间:2023-11-03 14:10:15 25 4
gpt4 key购买 nike

我正在开发一个基本的 Hug API,我的一个函数需要一个文件。

Hug有上传文件的方法吗?

最佳答案

这个例子就是你要找的:https://github.com/timothycrosley/hug/blob/develop/examples/file_upload_example.py

@hug.post('/upload')
def upload_file(body):
"""accepts file uploads"""
# is a simple dictionary of {filename: b'content'}
print('body: ', body)
return {'filename': list(body.keys()).pop(), 'filesize': len(list(body.values()).pop())}

关于python - 如何上传文件到 Hug REST API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39116130/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com