mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-04-22 05:39:42 +08:00
12 lines
288 B
Python
12 lines
288 B
Python
from flask_restful import fields # type: ignore
|
|
|
|
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,
|
|
}
|