mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 03:32:23 +08:00
9d221a5e19
Co-authored-by: Yi <yxiaoisme@gmail.com>
12 lines
272 B
Python
12 lines
272 B
Python
from flask_restful import fields
|
|
|
|
from libs.helper import TimestampField
|
|
|
|
external_knowledge_api_query_detail_fields = {
|
|
"id": fields.String,
|
|
"name": fields.String,
|
|
"setting": fields.String,
|
|
"created_by": fields.String,
|
|
"created_at": TimestampField,
|
|
}
|