mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
46154c6705
Co-authored-by: jyong <jyong@dify.ai> Co-authored-by: StyleZhang <jasonapring2015@outlook.com>
18 lines
409 B
Python
18 lines
409 B
Python
from flask_restful import fields
|
|
|
|
from libs.helper import TimestampField
|
|
|
|
upload_config_fields = {
|
|
'file_size_limit': fields.Integer,
|
|
'batch_count_limit': fields.Integer
|
|
}
|
|
|
|
file_fields = {
|
|
'id': fields.String,
|
|
'name': fields.String,
|
|
'size': fields.Integer,
|
|
'extension': fields.String,
|
|
'mime_type': fields.String,
|
|
'created_by': fields.String,
|
|
'created_at': TimestampField,
|
|
} |